blob: 8d0c47e163ddae6e7cd844c7e2e150ad10315275 (
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
34
35
36
37
38
39
40
41
42
43
44
45
46
|
melody = {
\key d \minor
\relative c'' \repeat volta 3 {
\partial 2 a a
g g r a
d d8 d c4 c
bes2 a2
f8[ e] d f e4 e
f8[ e] d f g4 g
a4. a8 g4 f
e2 d
}
}
lyr = \lyricmode {
A -- gnus |
De -- i Qui |
Tol -- lis pec -- ca -- ta |
mun -- di
<<
{
\set stanza = #"1.2."
Mi -- se -- re -- re no -- bis
Mi -- se -- re -- re no -- bis
Mi -- se -- re -- re no -- bis
}
\new Lyrics {
\set associatedVoice = "melody"
\set stanza = #"3."
Do -- na no -- bis pa -- cem
Do -- na no -- bis pa -- cem
Do -- na no -- bis pa -- cem
}
>>
}
\score{
<<
\new Voice = "melody" { \melody }
\new Lyrics \lyricsto "melody" { \lyr }
>>
\layout {}
\midi {}
}
|