blob: f8bf739fad202bd45339006c930106a1f84eec78 (
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
|
\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
\new Staff <<
\new Voice = "frauen" { \global \oneVoice \pausen }
\new Voice = "sopran" { \global \voiceOne \sopranMelodie }
\new Voice = "alt" { \global \voiceTwo \altMelodie }
>>
\new Lyrics = "text" {}
\new Staff <<
\clef "bass"
\new Voice = "maenner" { \global \oneVoice \pausen }
\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
}
}
|