blob: 49430b22a1e8dacef89ddbe3283e007eded82619 (
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
75
76
77
78
79
80
81
82
83
84
85
86
|
%some settings% vim: ai sw=2 lbr nu encoding=utf8
\include "stimmen.ly"
\include "texte.ly"
partA = \new ChoirStaff <<
\new Staff = sopran <<
%\new Voice = "meta" { s1*<+Anzahl der Takte+> \bar "|." }
\new Voice = "soprane" { \global \sopranMelodieA }
%\lyricsto soprane \sopranText
>>
\new Staff = alt <<
\new Voice = "alti" { \global \altMelodieA }
%\lyricsto alti \altText
>>
\new Staff = tenor <<
\new Voice = "tenoere" { \global \tenorMelodieA }
%\lyricsto tenoere \tenorText
>>
\new Staff = bass <<
\new Voice = "baesse" { \global \bassMelodieA }
%\lyricsto baesse \bassText
>>
>>
partB = \new ChoirStaff <<
\new Staff = sopran <<
%\new Voice = "meta" { s1*<+Anzahl der Takte+> \bar "|." }
\new Voice = "soprane" { \sopranMelodieB }
%\lyricsto soprane \sopranText
>>
\new Staff = alt <<
\new Voice = "alti" { \altMelodieB }
%\lyricsto alti \altText
>>
\new Staff = tenor <<
\new Voice = "tenoere" { \tenorMelodieB }
%\lyricsto tenoere \tenorText
>>
\new Staff = bass <<
\new Voice = "baesse" { \bassMelodieB }
%\lyricsto baesse \bassText
>>
>>
partC = \new ChoirStaff <<
\new Staff = sopran <<
%\new Voice = "meta" { s1*<+Anzahl der Takte+> \bar "|." }
\new Voice = "soprane" { \sopranMelodieC }
%\lyricsto soprane \sopranText
>>
\new Staff = alt <<
\new Voice = "alti" { \altMelodieC }
%\lyricsto alti \altText
>>
\new Staff = tenor <<
\new Voice = "tenoere" { \tenorMelodieC }
%\lyricsto tenoere \tenorText
>>
\new Staff = bass <<
\new Voice = "baesse" { \bassMelodieC }
%\lyricsto baesse \bassText
>>
>>
wholeMusic = {
<<
\new Staff = TenorSolo <<
\new Voice = "Tsolo" { \global \tenorSolo }
\lyricsto Tsolo \Tenor
>>
\partA
>>
\\
\break
\partB
\\
\break
<<
\new Staff = SopranSolo <<
\new Voice = "Ssolo" { \global \sopranSolo }
\lyricsto Ssolo \Sopran
>>
\partC
>>
}
|