blob: bed9f0a6f920f0c4aadaadca423f531555d9ea32 (
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
|
\score {
\header {
title = "Du bist der Ehrenkönig"
subtitle = "aus dem „Dettinger Te Deum“"
poet = ##f
composer = "Musik: Georg Friedrich Händel 1743"
}
\new ChoirStaff <<
\set Score.skipBars = ##t
\addQuote "sopranCue" { \sopranCue }
\addQuote "bassCue" { \bassCue }
\new Staff <<
\new Voice = "frauen" { \global \oneVoice \frauenPausen }
\new Voice = "sopran" { \global \voiceOne \sopranMelodie }
\new Voice = "alt" { \global \voiceTwo \altMelodie }
>>
\new Lyrics = "text" {}
\new Staff <<
\clef "bass"
\new Voice = "maenner" { \global \oneVoice \maennerPausen }
\new Voice = "tenor" { \global \voiceOne \tenorMelodie }
\new Voice = "bass" { \global \voiceTwo \bassMelodie }
>>
\new Lyrics = "textBass" {}
\context Lyrics = "text" \lyricsto "alt" \text
\context Lyrics = "textBass" \lyricsto "bass" \textBassExtra
>>
\layout {
indent = #0
\context {
\RemoveAllEmptyStaves
% \override VerticalAxisGroup #'remove-first = ##t
}
}
}
|