summaryrefslogtreecommitdiff
path: root/Kyrie_/satz.ly
blob: 620ef20bf183ecd64f1cbcb1125cd798c08be5c2 (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
\score {
  \header {
    title = "Kyrie"
    subtitle = "nach dem Adagio der „Mondscheinsonate“"
    composer = "Ludwig van Beethoven (1770-1827)"
    arranger = "Chorversion: Gottlob Benedict Bierey (1772-1840)"
    poet = "Orgelarrangement: Andreas Gräsle (*1964)"
  }
  \new ChoirStaff <<
    \set Score.skipBars = ##t
    \new Lyrics = sopranText { }
    \new Staff <<
      \new Voice = frauen   { \global \oneVoice \pausenFrauen }
      \new Voice = sopran   { \global \voiceOne \melodieSopran }
      \new Voice = alt      { \global \voiceTwo \melodieAlt }
    >>
    \new Lyrics = altText { }
    \new Lyrics = tenorText { }
    \new Staff <<
      \new Voice = maenner { \clef "bass" \global \oneVoice \pausenMaenner }
      \new Voice = tenor   { \clef "bass" \global \voiceOne \melodieTenor }
      \new Voice = bass    { \clef "bass" \global \voiceTwo \melodieBass }
    >>
    \new Lyrics = bassText { }
    \context Lyrics = sopranText \lyricsto sopran { \textSopran }
    \context Lyrics = altText    \lyricsto alt    { \textAlt }
    \context Lyrics = tenorText  \lyricsto tenor  { \textTenor }
    \context Lyrics = bassText   \lyricsto bass   { \textBass }
  >>
  \layout {
    indent = #0
  }
}