summaryrefslogtreecommitdiff
path: root/Missa_in_C/parts/Credo.ly
blob: 1c33d26b74e98c5dbea743a2ed28fcbf4af003c6 (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 #'Credo
      \globalCredo
      \new Voice = frauen        { \globalCredo \oneVoice \pausenCredo }
      \new CueVoice = soloSopran { \globalCredo \voiceOne \soloSopranMelodieCredo }
      \new CueVoice = soloAlt    { \globalCredo \voiceTwo \soloAltMelodieCredo }
      \new Voice = sopran        { \globalCredo \voiceOne << \sopranMelodieCredo \artikulationCredo >> }
      \new Voice = alt           { \globalCredo \voiceTwo \altMelodieCredo }
    >>
    \new Lyrics = text { }
    \new Staff <<
      \clef "bass" 
      \new Voice = maenner       { \globalCredo \oneVoice \pausenCredo }
      \new CueVoice = soloTenor  { \globalCredo \voiceOne \soloTenorMelodieCredo }
      \new CueVoice = soloBass   { \globalCredo \voiceTwo \soloBassMelodieCredo }
      \new Voice = tenor         { \globalCredo \voiceOne \tenorMelodieCredo }
      \new Voice = bass          { \globalCredo \voiceTwo << \bassMelodieCredo \artikulationCredo >> }
    >>
    \new Lyrics = textBass { }
    \context Lyrics = text \lyricsto alt \textCredo
  >>
  \layout {
    indent = #0
  }
  \header {
    title = "Missa in C"
    subtitle = "Orgelsolomesse KV 259"
    composer = "Wolfgang Amadeus Mozart (1756-1791)"
    piece = "Credo"
    tagline = ##f
  }
}