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

\score { % Domine % {{{
  \new ChoirStaff <<
    \set Score.skipBars = ##t
    \new Lyrics = stext { }
    \new Staff <<
      \label #'Domine
      \new Voice = frauen   { \oneVoice \globalDomine \frauenPausen }
      \new Voice = sopran   { \voiceOne \globalDomine \sopranMelodieDomine }
      \new Voice = alt      { \voiceTwo \globalDomine \altMelodieDomine }
    >>
    \new Lyrics = atext { }
    \new Lyrics = ttext { }
    \new Staff <<
      \clef "bass"
      \new Voice = maenner  { \oneVoice \globalDomine \maennerPausen }
      \new Voice = tenor    { \voiceOne \globalDomine \tenorMelodieDomine }
      \new Voice = bass     { \voiceTwo \globalDomine \bassMelodieDomine }
    >>
    \new Lyrics = btext { }
    \context Lyrics = stext \lyricsto sopran \textDomineSopran
    \context Lyrics = atext \lyricsto alt    \textDomineAlt
    \context Lyrics = ttext \lyricsto tenor  \textDomineTenor
    \context Lyrics = btext \lyricsto bass   \textDomineBass
  >>
  \layout {
    indent = #0
  }
  \header {
    title = "Gloria in D"
    composer = "Antonio Vivaldi"
    tagline = ##f
    piece = "7. Domine fili unigenite"
  }
} % }}}