summaryrefslogtreecommitdiff
path: root/Gloria_in_D/parts/Sancto.ly
blob: 8d753150dfcaabf2e676cf5a371a56be425c7996 (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
34
35
36
37
\include "deutsch.ly"

\score {
  \new ChoirStaff <<
    \set Score.skipBars = ##t
    \new Staff <<
      \label #'Sancto
      \new Voice = sopran   { \globalSancto \sopranMelodieSancto }
    >>
    \new Lyrics = Stext { }
    \new Staff <<
      \new Voice = alt      { \globalSancto \altMelodieSancto }
    >>
    \new Lyrics = Atext { }
    \new Staff <<
      \new Voice = tenor    { \globalSancto \clef "G_8" \tenorMelodieSancto }
    >>
    \new Lyrics = Ttext { }
    \new Staff <<
      \new Voice = bass     { \globalSancto \clef "bass" \bassMelodieSancto }
    >>
    \new Lyrics = Btext { }
    \context Lyrics = Stext \lyricsto sopran \textSanctoSopran
    \context Lyrics = Atext \lyricsto alt \textSanctoAlt
    \context Lyrics = Ttext \lyricsto tenor \textSanctoTenor
    \context Lyrics = Btext \lyricsto bass \textSanctoBass
  >>
  \layout {
    indent = #0
  }
  \header {
    title = "Gloria in D"
    composer = "Antonio Vivaldi"
    tagline = ##f
    piece = "12. Cum sancto spiritu"
  }
}