blob: 80f5eb1be31afd499fef9b015151035ac65da060 (
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
46
47
48
|
include(parts/stimmenXLII.pre)
include(parts/texteXLII.pre)
\score {
ifdef(`midi',`\unfoldRepeats {')
\new ChoirStaff <<
\set Score.skipBars = ##t
\new Lyrics = "sopranText"
\new Staff <<
\label #'ChorXLII
\new Voice = frauen { \globalXLII \oneVoice \frauenPausenXLII }
\new Voice = sopran { \globalXLII \voiceOne \sopranMelodieXLII }
\new Voice = alt { \globalXLII \voiceTwo \altMelodieXLII }
>>
\new Lyrics = "altText"
\new Lyrics = "tenorText"
\new Staff <<
\clef "bass"
\new Voice = maenner { \globalXLII \oneVoice \maennerPausenXLII }
\new Voice = tenor { \globalXLII \voiceOne \tenorMelodieXLII }
\new Voice = bass { \globalXLII \voiceTwo \bassMelodieXLII }
>>
\new Lyrics = "bassText"
\context Lyrics = "sopranText" \lyricsto sopran { ifdef(`deutsch',`\sopranTextXLIIDeu',`\sopranTextXLIIEng') }
\context Lyrics = "altText" \lyricsto alt { ifdef(`deutsch',`\altTextXLIIDeu',`\altTextXLIIEng') }
\context Lyrics = "tenorText" \lyricsto tenor { ifdef(`deutsch',`\tenorTextXLIIDeu',`\tenorTextXLIIEng') }
\context Lyrics = "bassText" \lyricsto bass { ifdef(`deutsch',`\bassTextXLIIDeu',`\bassTextXLIIEng') }
>>
ifdef(`midi',`}
`\midi' {
\context {
\Score
tempoWholesPerMinute = #(ly:make-moment 72 2)
}
}
',`
\layout {
indent = #0
}
\header {
title = "Messias"
subtitle = ##f
piece = "Nr. 42 Chor"
composer = "Georg Friedrich Händel"
tagline = ##f
}
')
}
|