blob: 0e004de61c7e1edafd5a860d01cd2a8071294c4a (
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
|
\include "deutsch.ly"
\score {
\new ChoirStaff <<
\set Score.skipBars = ##t
\new Staff = "frauen" <<
\new Lyrics = textSopran \with { alignAboveContext = "frauen" } { }
\label #'Gloria
\new Voice = pFrauen { \globalGloria \pausenGloria }
\new Voice = sopran { \globalGloria \voiceOne \sopranMelodieGloria }
\new Voice = alt { \globalGloria \voiceTwo \altMelodieGloria }
>>
\new Lyrics = textAlt { }
\new Lyrics = textTenor { }
\new Staff <<
\new Voice = pMaenner { \globalGloria \clef "bass" \pausenGloria }
\new Voice = tenor { \globalGloria \clef "bass" \voiceOne \tenorMelodieGloria }
\new Voice = bass { \globalGloria \clef "bass" \voiceTwo \bassMelodieGloria }
>>
\new Lyrics = textBass { }
\context Lyrics = textSopran \lyricsto sopran \textGloriaSopran
\context Lyrics = textAlt \lyricsto alt \textGloriaAlt
\context Lyrics = textTenor \lyricsto tenor \textGloriaTenor
\context Lyrics = textBass \lyricsto bass \textGloriaBass
>>
\layout {
indent = #0
}
\header {
title = "1. Gloria in excelsis"
composer = ##f
}
}
|