blob: 5f1e41b58c6bf76fea60eb15187877707480dada (
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
|
\score {
\header {
title = "Nun lob, mein Seel, den Herren"
poet = "Text: Johann Gramann 1530; Str. 5 Königsberg 1549"
meter = "Musik: 15. Jhd.; geistl. bei Hans Kugelmann 1540"
composer = "Satz: Michael Praetorius 1610"
arranger = "Einrichtung und Textunterlegung: Erhard Anger"
}
\new ChoirStaff <<
\new Staff <<
\set Score.skipBars = ##t
\new Voice = sopran { \global \sopranMelodie }
>>
ifdef(`STR_1',\new Lyrics \lyricsto sopran { \sopranTextI })
ifdef(`STR_4',\new Lyrics \lyricsto sopran { \sopranTextIV })
ifdef(`STR_5',\new Lyrics \lyricsto sopran { \sopranTextV })
\new Staff <<
\set Score.skipBars = ##t
\new Voice = alt { \global \altMelodie }
>>
ifdef(`STR_1',\new Lyrics \lyricsto alt { \altTextI })
ifdef(`STR_4',\new Lyrics \lyricsto alt { \altTextIV })
ifdef(`STR_5',\new Lyrics \lyricsto alt { \altTextV })
\new Staff <<
\new Voice = maenner { \global \clef "bass" \maennerMelodie }
\new CueVoice = bass { \global \clef "bass" \bassMelodie }
>>
ifdef(`STR_1',\new Lyrics \lyricsto maenner { \maennerTextI })
ifdef(`STR_4',\new Lyrics \lyricsto maenner { \maennerTextIV })
ifdef(`STR_5',\new Lyrics \lyricsto maenner { \maennerTextV })
>>
\layout {
indent = #0
}
}
|