summaryrefslogtreecommitdiff
path: root/Thank_you_for_the_music/Thank_you_for_the_music.ly
blob: 5b2c2eff345fa85d3116bbce8deca5b9c82da319 (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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
\include "deutsch.ly"
include(stimmen.pre)
include(texte.pre)

\pointAndClickOff

\header {
  tagline = ""
}
\paper {
  top-margin = 5
  print-all-headers = ##t
}

\score {
ifdef(`nur-midi',
  \unfoldRepeats {
    \global
    <<
      ifdef(`nur-Alt'   ,,ifdef(`nur-Tenor',,ifdef(`nur-Bass' ,,\new Voice { ifdef(`nur-Sopran',\oneVoice,\voiceOne)   \sopranMelodie })))
      ifdef(`nur-Sopran',,ifdef(`nur-Tenor',,ifdef(`nur-Bass' ,,\new Voice { ifdef(`nur-Alt',   \oneVoice,\voiceTwo)   \altMelodie })))
      ifdef(`nur-Sopran',,ifdef(`nur-Alt'  ,,ifdef(`nur-Bass' ,,\new Voice { ifdef(`nur-Tenor', \oneVoice,\voiceThree) \tenorMelodie })))
      ifdef(`nur-Sopran',,ifdef(`nur-Alt'  ,,ifdef(`nur-Tenor',,\new Voice { ifdef(`nur-Bass',  \oneVoice,\voiceFour)  \bassMelodie })))
    >>
  }
  \midi {
    \context {
      \Score
      tempoWholesPerMinute = #(ly:make-moment 50 2)
    }
  },
  \header {
    title = "Thank you for the music"
    poet = "Abba"
  }
  \new ChoirStaff <<
    \set Score.skipBars = ##t
    \new Staff <<
      \new Voice = "frauen"    { \global \oneVoice \frauenPausen }
      \new Voice = "sopran"    { \global \voiceOne \sopranMelodie }
      \new Voice = "alt"       { \global \voiceTwo \altMelodie }
    >>
    \new Lyrics = "textEins" {}
    \new Lyrics = "textZwei" {}
    \new Staff = "maenner" <<
      \clef "bass"
      \new Voice = "frauen"    { \global \oneVoice \maennerPausen }
      \new Voice = "tenor"     { \global \voiceOne \tenorMelodie }
      \new Voice = "bass"      { \global \voiceTwo \bassMelodie }
    >>
    \context Lyrics = "textEins" \lyricsto "sopran" \textFrauen
    \context Lyrics = "textZwei" \lyricsto "tenor"  \textMaenner
  >>
  \layout {
    indent = #0
  }
)
}