blob: aa625675b117e66747ad004b734cb54e4744bcff (
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
|
\score {
\header {
title = "Das Lieben bringt groß Freud"
}
\new ChoirStaff <<
\new Staff <<
\set Score.skipBars = ##t
\new Voice = frauen { \global \oneVoice \frauenPausen }
\new Voice = sopran { \global \voiceOne \sopranMelodie }
\new Voice = alt { \global \voiceTwo \altMelodie }
>>
ifdef(`STR_1',`\new Lyrics \lyricsto alt { \textI }')
ifdef(`STR_2',`\new Lyrics \lyricsto alt { \textII }')
ifdef(`STR_3',`\new Lyrics \lyricsto alt { \textIII }')
\new Staff <<
\new Voice = maenner { \global \clef "bass" \oneVoice \maennerPausen }
\new Voice = tenor { \global \clef "bass" \voiceOne \tenorMelodie }
\new Voice = bass { \global \clef "bass" \voiceTwo \bassMelodie }
>>
ifdef(`STR_1',`\new Lyrics \lyricsto bass { \bassTextI }')
ifdef(`STR_2',`\new Lyrics \lyricsto bass { \bassTextII }')
ifdef(`STR_3',`\new Lyrics \lyricsto bass { \bassTextIII }')
>>
\layout {
indent = #0
}
}
|