blob: 2cf48a256fc3b4977780df5388281dddbd2959b1 (
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
|
include(parts/stimmenXLII.pre)
include(parts/texteXLII.pre)
\score {
\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') }
>>
\layout {
indent = #0
}
\header {
title = "Messias"
subtitle = ##f
piece = "Nr. 42 Chor"
composer = "Georg Friedrich Händel"
tagline = ##f
}
}
|