blob: c885e4f1752e6ea66d3a21ea81e7d07f38d8d686 (
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
|
\include "deutsch.ly"
\score {
\new ChoirStaff <<
\set Score.skipBars = ##t
\new Staff <<
\label #'AgnusDei
\new Voice = frauen { \globalAgnusDei \oneVoice \pausenAgnusDei }
\new Voice = sopran { \globalAgnusDei \voiceOne << \sopranMelodieAgnusDei \artikulationAgnusDei >> }
\new Voice = alt { \globalAgnusDei \voiceTwo \altMelodieAgnusDei }
>>
\new Lyrics = text { }
\new Staff <<
\new Voice = maenner { \globalAgnusDei \oneVoice \pausenAgnusDei }
\new Voice = tenor { \globalAgnusDei \clef "bass" \voiceOne \tenorMelodieAgnusDei }
\new Voice = bass { \globalAgnusDei \clef "bass" \voiceTwo << \bassMelodieAgnusDei \artikulationAgnusDei >> }
>>
\context Lyrics = text \lyricsto sopran \textAgnusDei
>>
\layout {
indent = #0
}
\header {
title = "Missa Brevis"
composer = "Jacob de Haan"
tagline = ##f
piece = "Agnus Dei"
}
}
|