summaryrefslogtreecommitdiff
path: root/Missa_brevis_in_C/parts/gloria.ly
blob: 528dc029d0c64325edb46a007dd52f0e140c050e (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
\include "deutsch.ly"

\score {
  \new ChoirStaff <<
    \set Score.skipBars = ##t
    \new Staff <<
      \new Voice = frauen   { \globalGloria \oneVoice \pausenFrauenGloria }
      \new Voice = sopran   { \globalGloria \voiceOne << \melodieSopranGloria \artikulationGloria >> }
      \new Voice = alt      { \globalGloria \voiceTwo \melodieAltGloria }
    >>
    \new Lyrics = textAlle {}
    \new Staff <<
      \new Voice = maenner { \clef "bass" \globalGloria \oneVoice \pausenMaennerGloria }
      \new Voice = tenor   { \clef "bass" \globalGloria \voiceOne \melodieTenorGloria }
      \new Voice = bass    { \clef "bass" \globalGloria \voiceTwo << \melodieBassGloria \artikulationGloria >> }
    >>
    \new Lyrics = textBass {}
    \context Lyrics = textAlle \lyricsto alt  { \textGloria }
    \context Lyrics = textBass \lyricsto bass { \textBassGloria }
  >>
  \header {
    piece = "Nr. 2 Gloria"
  }
  \layout {
    indent = #0
    \context {
      \Staff
      \RemoveEmptyStaves
    }
  }
}