summaryrefslogtreecommitdiff
path: root/Missa_in_C/parts/Kyrie.ly
blob: 28ac6775ab54d823485f4ca504f221c1cbadddef (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
38
39
40
\include "deutsch.ly"

\score {
  \new ChoirStaff <<
    \set Score.skipBars = ##t
    \new Staff <<
      \label #'Kyrie
      \globalKyrie
      \new Voice = frauen        { \globalKyrie \oneVoice \frauenPausenKyrie }
      \new CueVoice = soloSopran { \globalKyrie \voiceOne \soloSopranMelodieKyrie }
      \new CueVoice = soloAlt    { \globalKyrie \voiceTwo \soloAltMelodieKyrie }
      \new Voice = sopran        { \globalKyrie \voiceOne << \sopranMelodieKyrie \artikulationKyrie >> }
      \new Voice = alt           { \globalKyrie \voiceTwo \altMelodieKyrie }
    >>
    \new Lyrics = textAlt   { }
    \new Lyrics = textTenor { }
    \new Staff <<
      \clef "bass" 
      \new Voice = maenner       { \globalKyrie \oneVoice \maennerPausenKyrie }
      \new CueVoice = soloTenor  { \globalKyrie \voiceOne \soloTenorMelodieKyrie }
      \new CueVoice = soloBass   { \globalKyrie \voiceTwo \soloBassMelodieKyrie }
      \new Voice = tenor         { \globalKyrie \voiceOne \tenorMelodieKyrie }
      \new Voice = bass          { \globalKyrie \voiceTwo << \bassMelodieKyrie \artikulationKyrie >> }
    >>
    \new Lyrics = textBass { }
    \context Lyrics = textAlt    \lyricsto alt    \textAltKyrie
    \context Lyrics = textTenor  \lyricsto tenor  \textTenorKyrie
    \context Lyrics = textBass   \lyricsto bass   \textBassKyrie
  >>
  \layout {
    indent = #0
  }
  \header {
    title = "Missa in C"
    subtitle = "Orgelsolomesse KV 259"
    composer = "Wolfgang Amadeus Mozart (1756-1791)"
    piece = "Kyrie"
    tagline = ##f
  }
}