blob: 31076c41d70f3a1b360dfd49187864c3cb43f0fa (
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
|
\include "deutsch.ly"
\score {
\new ChoirStaff <<
\set Score.skipBars = ##t
\new Staff <<
\label #'AgnusDei
\new Voice = frauen { \globalAgnusDei \frauenPausenAgnusDei }
\new CueVoice { \globalAgnusDei \oneVoice \sopranSoloMelodieAgnusDei }
\new Voice = sopran { \globalAgnusDei \voiceOne \sopranMelodieAgnusDei }
\new Voice = alt { \globalAgnusDei \voiceTwo \altMelodieAgnusDei }
>>
\new Lyrics = text { }
\new Staff <<
\new Voice = maenner { \globalAgnusDei \maennerPausenAgnusDei }
\new CueVoice { \globalAgnusDei \clef "bass" \voiceOne \tenorSoloMelodieAgnusDei }
\new Voice = tenor { \globalAgnusDei \clef "bass" \voiceOne \tenorMelodieAgnusDei }
\new CueVoice { \globalAgnusDei \clef "bass" \voiceTwo \bassSoloMelodieAgnusDei }
\new Voice = bass { \globalAgnusDei \clef "bass" \voiceTwo \bassMelodieAgnusDei }
>>
\context Lyrics = text \lyricsto sopran \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"
}
}
|