blob: 316043bcb80ff8e37019d6235001348a87634680 (
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
|
\score {
\header {
piece = "Benedictus"
composer = ##f
}
\new ChoirStaff <<
\set Score.skipBars = ##t
\new Staff <<
\new Voice = frauen { \oneVoice \globalBenedictus \pausenFrauenBenedictus }
\new Voice = sopran { \voiceOne \globalBenedictus \melodieSopranBenedictus }
\new Voice = alt { \voiceTwo \globalBenedictus << \melodieAltBenedictus \artikulationBenedictus >> }
>>
\new Lyrics \lyricsto alt { \textBenedictus }
\new Staff <<
\clef "bass"
\new Voice = maenner { \oneVoice \globalBenedictus \pausenMaennerBenedictus }
\new Voice = tenor { \voiceOne \globalBenedictus \melodieTenorBenedictus }
\new Voice = bass { \voiceTwo \globalBenedictus << \melodieBassBenedictus \artikulationBenedictus >> }
>>
>>
\layout {
% indent = #0
\context {
\Staff
\RemoveEmptyStaves
}
}
}
|