summaryrefslogtreecommitdiff
path: root/Pop_Messe/sanctus/sanctus.ly
blob: 145aa8f1d10dc81a3e0b68e496fc8c6ecbbf2e2e (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 {
    title = "Sanctus"
    composer = ##f
  }
  \new ChoirStaff <<
    \set Score.skipBars = ##t
    \new Staff <<
      \new Voice = sopran   { \globalSanctus << \melodieSopranSanctus \artikulationSanctus >> }
    >>
    \new Lyrics \lyricsto sopran { \textSanctus }
    \new Staff <<
      \new Voice = alt      { \globalSanctus << \melodieAltSanctus \artikulationSanctus >> }
    >>
    \new Lyrics \lyricsto alt { \textSanctus }
    \new Staff <<
      \new Voice = tenor   { \clef "G_8" \globalSanctus << \melodieTenorSanctus \artikulationSanctus >> }
    >>
    \new Lyrics \lyricsto tenor { \textSanctus }
    \new Staff <<
      \new Voice = bass    { \clef "bass" \globalSanctus << \melodieBassSanctus \artikulationSanctus >> }
    >>
    \new Lyrics \lyricsto bass { \textSanctus }
  >>
  \layout {
%    indent = #0
    \context {
      \Staff
      \RemoveEmptyStaves
    }
  }
}