blob: 74b903103f0494d7a34eac13bfaa726096fc8430 (
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 #'Benedictus
\new Voice = frauen { \globalBenedictus \frauenPausenBenedictus }
\new CueVoice { \globalBenedictus \oneVoice \sopranSoloMelodieBenedictus }
\new Voice = sopran { \globalBenedictus \voiceOne \sopranMelodieBenedictus }
\new Voice = alt { \globalBenedictus \voiceTwo \altMelodieBenedictus }
>>
\new Lyrics = text { }
\new Staff <<
\new Voice = maenner { \globalBenedictus \maennerPausenBenedictus }
\new CueVoice { \globalBenedictus \clef "bass" \voiceOne \tenorSoloMelodieBenedictus }
\new Voice = tenor { \globalBenedictus \clef "bass" \voiceOne \tenorMelodieBenedictus }
\new CueVoice { \globalBenedictus \clef "bass" \voiceTwo \bassSoloMelodieBenedictus }
\new Voice = bass { \globalBenedictus \clef "bass" \voiceTwo \bassMelodieBenedictus }
>>
\context Lyrics = text \lyricsto sopran \textBenedictus
>>
\layout {
indent = #0
}
\header {
title = "Eine Messe für den Frieden"
subtitle = "The armed man"
composer = "Karl Jenkins *1944"
tagline = ##f
piece = "Benedictus"
}
}
|