summaryrefslogtreecommitdiff
path: root/Pop_Messe/kyrie/kyrie.ly
blob: 6a89d6bb9d88b7423dc5f748c22b57d34f6df155 (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
\score {
  \header {
    piece = "Kyrie"
    composer = ##f
  }
  \new ChoirStaff <<
    \set Score.skipBars = ##t
    \new Staff <<
      \new Voice = sopran   { \globalKyrie << \melodieSopranKyrie \artikulationKyrie >> }
    >>
    \new Lyrics \lyricsto sopran { \textKyrie }
    \new Staff <<
      \new Voice = alt      { \globalKyrie << \melodieAltKyrie \artikulationKyrie >> }
    >>
    \new Lyrics \lyricsto alt { \textKyrie }
    \new Staff <<
      \new Voice = tenor   { \clef "G_8" \globalKyrie << \melodieTenorKyrie \artikulationKyrie >> }
    >>
    \new Lyrics \lyricsto tenor { \textKyrie }
    \new Staff <<
      \new Voice = bass    { \clef "bass" \globalKyrie << \melodieBassKyrie \artikulationKyrie >> }
    >>
    \new Lyrics \lyricsto bass { \textKyrie }
  >>
  \layout {
%    indent = #0
    \context {
      \Staff
      \RemoveEmptyStaves
    }
  }
}