blob: a987bf7eea7c222c8fc81394160128e2fe295951 (
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
|
\include "deutsch.ly"
\score {
\new ChoirStaff <<
\set Score.skipBars = ##t
\new Staff <<
\label #'Sanctus
\new Voice = frauen { \globalSanctus \frauenPausenSanctus }
\new Voice = sopran { \globalSanctus \voiceOne \sopranMelodieSanctus }
\new Voice = alt { \globalSanctus \voiceTwo \altMelodieSanctus }
>>
\new Lyrics = text { }
\new Staff <<
\new Voice = maenner { \globalSanctus \maennerPausenSanctus }
\new Voice = tenor { \globalSanctus \clef "bass" \voiceOne \tenorMelodieSanctus }
\new Voice = bass { \globalSanctus \clef "bass" \voiceTwo \bassMelodieSanctus }
>>
\new Lyrics = textBass { }
\context Lyrics = text \lyricsto alt \textSanctus
\context Lyrics = textBass \lyricsto bass \bassTextSanctus
>>
\layout {
indent = #0
}
\header {
title = "Eine Messe für den Frieden"
subtitle = "The armed man"
composer = "Karl Jenkins *1944"
tagline = ##f
piece = "Sanctus"
}
}
|