blob: 7a501cc22be1ad5cb75f3d89d84ce758fc4bb75b (
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
|
\include "deutsch.ly"
\score {
\new ChoirStaff <<
\set Score.skipBars = ##t
\new Staff {
\label #'ChorXIX
\new Voice = sopran { \globalXIX \sopranMelodieXIX \bar "|." }
}
\new Lyrics \lyricsto sopran { \sopranTextXIX }
\new Staff {
\new Voice = alt { \globalXIX \altMelodieXIX }
}
\new Lyrics \lyricsto alt{ \altTextXIX }
\new Staff {
\new Voice = tenor { \globalXIX \tenorMelodieXIX }
}
\new Lyrics \lyricsto tenor { \tenorTextXIX }
\new Staff {
\new Voice = bass { \globalXIX \bassMelodieXIX }
}
\new Lyrics \lyricsto bass { \bassTextXIX }
>>
\layout {
indent = #0
}
\header {
title = "Messias"
subtitle = ##f
piece = "Nr. 19 Chor"
composer = "Georg Friedrich Händel"
tagline = ##f
}
}
|