summaryrefslogtreecommitdiff
path: root/Freu_dich_Erd_und_Sternenzelt/satz.ly
blob: 417abc80fa9b3dc65bba01fd183cadb5c4073490 (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
36
\score {
  \header {
    title = "Freu dich Erd und Sternenzelt"
    composer = "Melodie: Böhmen 1505; Leitmeritz 1844"
    arranger = "Satz: Karl Riedel (1827-1888)"
    poet = "Text: Leitmeritz 1844"
  }
  \new ChoirStaff <<
    \set Score.skipBars = ##t
    \new Lyrics = textSopran { }
    \new Dynamics {
      \global \artikulation
    }
    \new Staff <<
      \new Voice = frauen  { \global \oneVoice \pausen }
      \new Voice = sopran  { \global \voiceOne \sopranMelodie }
      \new Voice = alt     { \global \voiceTwo \altMelodie }
    >>
    \context Lyrics = textSopran \lyricsto sopran { \textSopran }
    ifdef(`STR_1',`\new Lyrics \lyricsto alt { \textI }')
    ifdef(`STR_2',`\new Lyrics \lyricsto alt { \textII }')
    ifdef(`STR_3',`\new Lyrics \lyricsto alt { \textIII }')
    ifdef(`STR_4',`\new Lyrics \lyricsto alt { \textIV }')
    \new Staff <<
      \new Voice = maenner { \global \clef "bass" \oneVoice \pausen }
      \new Voice = tenor   { \global \clef "bass" \voiceOne \tenorMelodie }
      \new Voice = bass    { \global \clef "bass" \voiceTwo \bassMelodie }
    >>
    \new Dynamics {
      \global \artikulation
    }
  >>
  \layout {
    indent = #0
  }
}