blob: 9239a5105ea0e995f616fcbbdd56ac8d67b191e7 (
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
|
\score {
\header {
title = "ifdef(`_D',`Wer kann segeln') ifdef(`_DS',` - ') ifdef(`_S',`Vem kan segla')"
poet = "Text und Melodie: Norwegen"
composer = "Satz: Gunnar Erikson"
}
\new ChoirStaff <<
\set Score.skipBars = ##t
\new Staff <<
\new Voice = sopran { \global \voiceOne \sopranMelodie }
\new Voice = alt { \global \voiceTwo \altMelodie }
>>
ifdef(`STR_1',`\new Lyrics \lyricsto alt { \textFrauenDI }')
ifdef(`STR_1S',`\new Lyrics \lyricsto alt { \textFrauenNI }')
ifdef(`STR_2',`\new Lyrics \lyricsto alt { \textFrauenDII }')
ifdef(`STR_2S',`\new Lyrics \lyricsto alt { \textFrauenNII }')
\new Lyrics = tenorText { }
\new Staff <<
\new Voice = maenner { \clef "bass" \global \oneVoice \maennerMelodie }
>>
ifdef(`STR_1',`\new Lyrics \lyricsto maenner { \textMaennerDI }')
ifdef(`STR_1S',`\new Lyrics \lyricsto maenner { \textMaennerNI }')
ifdef(`STR_2',`\new Lyrics \lyricsto maenner { \textMaennerDII }')
ifdef(`STR_2S',`\new Lyrics \lyricsto maenner { \textMaennerNII }')
>>
\layout {
indent = #0
}
}
|