summaryrefslogtreecommitdiff
path: root/Gloria_in_D/parts/Gloria.ly
blob: d9c3d5f1121ccfdf79b171a65fdff5b34803a3f2 (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
\include "deutsch.ly"

\score {
  \new ChoirStaff <<
    \set Score.skipBars = ##t
    \addQuote "sopranCue" { \sopranCue }
    \new Staff = "frauen" <<
      \label #'Gloria
      \new Voice = pFrauen  { \globalGloria \frauenPausenGloria }
      \new Voice = sopran   { \globalGloria \voiceOne \sopranMelodieGloria }
      \new Voice = alt      { \globalGloria \voiceTwo \altMelodieGloria }
    >>
    \new Lyrics = text { }
    \new Staff <<
      \new Voice = pMaenner { \globalGloria \clef "bass" \maennerPausenGloria }
      \new Voice = tenor    { \globalGloria \clef "bass" \voiceOne \tenorMelodieGloria }
      \new Voice = bass     { \globalGloria \clef "bass" \voiceTwo \bassMelodieGloria }
    >>
    \context Lyrics = text \lyricsto alt \textGloria
  >>
  \layout {
    indent = #0
  }
  \header {
    title = "Gloria in D"
    composer = "Antonio Vivaldi"
    tagline = ##f
    piece = "1. Gloria in excelsis"
  }
}