blob: 5b52aa9241edcc9428fea0c479c80e01d0118533 (
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
|
\include "deutsch.ly"
\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 { \sopranTextXLII }
\context Lyrics = "altText" \lyricsto alt { \altTextXLII }
\context Lyrics = "tenorText" \lyricsto tenor { \tenorTextXLII }
\context Lyrics = "bassText" \lyricsto bass { \bassTextXLII }
>>
\layout {
indent = #0
}
\header {
title = "Messias"
subtitle = ##f
piece = "Nr. 42 Chor"
composer = "Georg Friedrich Händel"
tagline = ##f
}
}
|