blob: 276515094d002e0388dc46208c83bf0f79bed206 (
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 { % LI % {{{
\new ChoirStaff <<
\set Score.skipBars = ##t
\new Staff {
\label #'ChorLI
\new Voice = sopran { \globalLI \sopranMelodieLI \bar "|." }
}
\new Lyrics \lyricsto sopran { \sopranTextLI }
\new Staff {
\new Voice = alt { \globalLI \altMelodieLI }
}
\new Lyrics \lyricsto alt{ \altTextLI }
\new Staff {
\new Voice = tenor { \globalLI \tenorMelodieLI }
}
\new Lyrics \lyricsto tenor { \tenorTextLI }
\new Staff {
\new Voice = bass { \globalLI \bassMelodieLI }
}
\new Lyrics \lyricsto bass { \bassTextLI }
>>
\layout {
indent = #0
}
\header {
title = "Messias"
subtitle = ##f
piece = "Nr. 51 Chor"
composer = "Georg Friedrich Händel"
tagline = ##f
}
} % }}}
|