blob: f4ca356103a26f95b859e53027c0428cc11d66ed (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
|
\include "deutsch.ly"
\include "stimmen.ly"
\include "texte.ly"
\include "artikulation.ly"
\pointAndClickOff
#(set! paper-alist (cons '("kindle" . (cons (* 210 mm) (* 130 mm))) paper-alist))
#(set-default-paper-size "kindle")
\paper {
top-margin = 5
print-all-headers = ##t
}
\header {
title = "Ach wie flüchtig, ach wie nichtig"
composer = "J.S.Bach"
tagline = ##f
}
\score {
\header {
title = "1. Coro"
composer = ##f
}
\new ChoirStaff <<
\set Score.skipBars = ##t
\new Staff <<
\new Voice = sopran { \globalI \sopranMelodieI }
>>
\new Lyrics \lyricsto sopran { \sopranTextI }
\new Staff <<
\new Voice = alt { \globalI \altMelodieI }
>>
\new Lyrics \lyricsto alt { \altTextI }
\new Staff <<
\new Voice = tenor { \globalI \clef "G_8" \tenorMelodieI }
>>
\new Lyrics \lyricsto tenor { \tenorTextI }
\new Staff <<
\new Voice = bass { \globalI \clef "bass" \bassMelodieI }
>>
\new Lyrics \lyricsto bass { \bassTextI }
>>
\layout {
indent = #0
}
}
\score {
\header {
title = "6. Choral"
composer = ##f
}
\new ChoirStaff <<
\set Score.skipBars = ##t
\new Staff <<
\new Voice = frArti { \globalVI \oneVoice \artikulationVI }
\new Voice = sopran { \globalVI \voiceOne \sopranMelodieVI }
\new Voice = alt { \globalVI \voiceTwo \altMelodieVI }
>>
\new Lyrics \lyricsto sopran { \TextVI }
\new Staff <<
\new Voice = maArti { \globalVI \oneVoice \clef "bass" \artikulationVI }
\new Voice = tenor { \globalVI \voiceOne \clef "bass" \tenorMelodieVI }
\new Voice = bass { \globalVI \voiceTwo \clef "bass" \bassMelodieVI }
>>
>>
\layout {
indent = #0
}
}
|