blob: 9a5bbdc2812b92caf0a1f60db74f38e8f6b0a0cc (
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
|
%some settings% vim: ai sw=2 lbr nu et
\version "2.12"
\include "stimmen.ly"
\score {
<<
\unfoldRepeats
\new Staff = sopran <<
%\new Voice = "meta" { s1*<+Anzahl der Takte+> \bar "|." }
\new Voice = "soprane" { \global \sopranMelodie }
>>
\new Staff = alt <<
%\new Voice = "meta" { s1*<+Anzahl der Takte+> \bar "|." }
\new Voice = "alti" { \global \altMelodie }
>>
\new Staff = tenor <<
%\new Voice = "meta" { s1*<+Anzahl der Takte+> \bar "|." }
\new Voice = "tenoere" { \global \tenorMelodie }
>>
\new Staff = bass <<
%\new Voice = "meta" { s1*<+Anzahl der Takte+> \bar "|." }
\new Voice = "baesse" { \global \bassMelodie }
>>
>>
\midi {
\context{
\Score
tempoWholesPerMinute = #(ly:make-moment 120 4)
}
}
}
|