blob: ad272b065adac6e8bc5fbe9a94738d52c5f4a98b (
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
38
39
40
41
42
43
44
45
|
include(parts/stimmenLII.pre)
include(parts/texteLII.pre)
\score {
ifdef(`midi',`\unfoldRepeats {')
\new ChoirStaff <<
\set Score.skipBars = ##t
\new Staff {
\label #'ChorLII
\new Voice = sopran { \globalLII \sopranMelodieLII }
}
\new Lyrics \lyricsto sopran { ifdef(`deutsch',`',`\sopranTextLIIEng') }
\new Staff {
\new Voice = alt { \globalLII \altMelodieLII }
}
\new Lyrics \lyricsto alt{ ifdef(`deutsch',`',`\altTextLIIEng') }
\new Staff {
\new Voice = tenor { \globalLII \tenorMelodieLII }
}
\new Lyrics \lyricsto tenor { ifdef(`deutsch',`',`\tenorTextLIIEng') }
\new Staff {
\new Voice = bass { \globalLII \bassMelodieLII }
}
\new Lyrics \lyricsto bass { ifdef(`deutsch',`',`\bassTextLIIEng') }
>>
ifdef(`midi',`}
`\midi' {
\context {
\Score
tempoWholesPerMinute = #(ly:make-moment 72 2)
}
}
',`
\layout {
indent = #0
}
\header {
title = "Messias"
subtitle = ##f
piece = "Nr. 52 Chor"
composer = "Georg Friedrich Händel"
tagline = ##f
}
')
}
|