blob: 775368664b9b466fa05b9fddf00580b2734c41e3 (
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 #'Gloria
\globalGloria
\new Voice = frauen { \globalGloria \oneVoice \frauenPausenGloria }
\new CueVoice = soloSopran { \globalGloria \voiceOne \soloSopranMelodieGloria }
\new CueVoice = soloAlt { \globalGloria \voiceTwo \soloAltMelodieGloria }
\new Voice = sopran { \globalGloria \voiceOne << \sopranMelodieGloria \artikulationGloria >> }
\new Voice = alt { \globalGloria \voiceTwo \altMelodieGloria }
>>
\new Lyrics = text { }
\new Staff <<
\clef "bass"
\new Voice = maenner { \globalGloria \oneVoice \maennerPausenGloria }
\new CueVoice = soloTenor { \globalGloria \voiceOne \soloTenorMelodieGloria }
\new CueVoice = soloBass { \globalGloria \voiceTwo \soloBassMelodieGloria }
\new Voice = tenor { \globalGloria \voiceOne \tenorMelodieGloria }
\new Voice = bass { \globalGloria \voiceTwo << \bassMelodieGloria \artikulationGloria >> }
>>
\new Lyrics = textBass { }
\context Lyrics = text \lyricsto alt \textGloria
>>
\layout {
indent = #0
}
\header {
title = "Missa in C"
subtitle = "Orgelsolomesse KV 259"
composer = "Wolfgang Amadeus Mozart (1756-1791)"
piece = "Gloria"
tagline = ##f
}
}
|