blob: aeb5a357d576d8f28965b884863031077811ed94 (
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
|
\include "deutsch.ly"
\score {
\new ChoirStaff <<
\set Score.skipBars = ##t
\new Staff <<
\label #'AgnusDei
\new Voice = frauen { \globalAgnusDei \frauenPausenAgnusDei }
\new Voice = sopran { \globalAgnusDei \voiceOne \sopranMelodieAgnusDei }
\new Voice = alt { \globalAgnusDei \voiceTwo \altMelodieAgnusDei }
>>
\new Lyrics = text { }
\new Staff <<
\new Voice = maenner { \globalAgnusDei \maennerPausenAgnusDei }
\new Voice = tenor { \globalAgnusDei \clef "bass" \voiceOne \tenorMelodieAgnusDei }
\new Voice = bass { \globalAgnusDei \clef "bass" \voiceTwo \bassMelodieAgnusDei }
>>
\context Lyrics = text \lyricsto bass \textAgnusDei
>>
\layout {
indent = #0
}
\header {
title = "Eine Messe für den Frieden"
subtitle = "The armed man"
composer = "Karl Jenkins *1944"
tagline = ##f
piece = "Agnus Dei"
}
}
|