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
|
\score {
\header {
title = "Friede erfüllet Stadt und Land"
poet = "Dänischer Text: Bernhard Severin Ingemann"
meter = "Deutsche Textfassung: Johanna van Führen"
composer = "Musik: Niels la Cour (*1944)"
}
\new ChoirStaff <<
\set Score.skipBars = ##t
\new Staff <<
ifdef(`Pausen-statt-Fermaten',`
\new Voice = frauen { \global \oneVoice \pausen }
')
\new Voice = sopran { \global \voiceOne << \melodieSopran \artikulation >> }
\new Voice = alt { \global \voiceTwo \melodieAlt }
>>
ifdef(`STR_1',`\new Lyrics \lyricsto sopran { \textDeuI }')
ifdef(`STR_2',`\new Lyrics \lyricsto sopran { \textDeuII }')
ifdef(`STR_3',`\new Lyrics \lyricsto sopran { \textDeuIII }')
ifdef(`STR_4',`\new Lyrics \lyricsto sopran { \textDeuIV }')
ifdef(`STR_5',`\new Lyrics \lyricsto sopran { \textDeuV }')
ifdef(`STR_6',`\new Lyrics \lyricsto sopran { \textDeuVI }')
ifdef(`STR_7',`\new Lyrics \lyricsto sopran { \textDeuVII }')
ifdef(`STR_1D',`\new Lyrics \lyricsto sopran { \textDaeI }')
ifdef(`STR_2D',`\new Lyrics \lyricsto sopran { \textDaeII }')
ifdef(`STR_3D',`\new Lyrics \lyricsto sopran { \textDaeIII }')
ifdef(`STR_4D',`\new Lyrics \lyricsto sopran { \textDaeIV }')
ifdef(`STR_5D',`\new Lyrics \lyricsto sopran { \textDaeV }')
ifdef(`STR_6D',`\new Lyrics \lyricsto sopran { \textDaeVI }')
ifdef(`STR_7D',`\new Lyrics \lyricsto sopran { \textDaeVII }')
\new Staff <<
ifdef(`Pausen-statt-Fermaten',`
\new Voice = maenner { \clef "bass" \global \oneVoice \pausen }
')
\new Voice = tenor { \clef "bass" \global \voiceOne << \melodieTenor \artikulation >> }
\new Voice = bass { \clef "bass" \global \voiceTwo \melodieBass }
>>
>>
\layout {
% indent = #0
}
}
|