blob: b10e9d872f58e2e470120f9c097b64d7948262fd (
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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
|
%some settings% vim: ai sw=2 lbr nu encoding=utf8
\include "dynArt.ly"
global = {
\key c \major
%\override Staff.TimeSignature #'style = #'()
\time 4/4
}
% Die Stimmen
sopranMelodie = \relative c' {
<<
{ \meta }
%\sopranArt
%the actual tune
{
% r1 <++>
}
>>
}
altMelodie = \relative c' {
<<
{ \meta }
%\altArt
%the actual tune
{
% r1 <++>
}
>>
}
tenorMelodie = \relative c' {
<<
{ \meta }
%\tenorArt
%the actual tune
{
% r1 <++>
}
>>
}
bassMelodie = \relative c' {
<<
{ \meta }
%\bassArt
%the actual tune
\clef bass
{
%Kyrie
c4. c8 a4 e4
f2 c4 c4 ~ c4
b4 c4 r8 c'8
fis,2 f4 e4
d2 c2
%Allegro, Alla breve
\time 4/2
r1 r1 r1
g'2. f4
e4( d4 ) c2 f2.( e8 f8
g2. f4 e4 d4 c4 d8 e8
f2) c'4 c,4 d2( g2 )
c,4 e4 d4 g4 c,1
b4 b'4 a4 d4 c2.( bes4
a4 g4 f4 g8 a8 bes2. a8 g8
a2. g8 f8 g1)
f4 a4 g4 c4 f,1
e4 c'2 b4 a4 g4 fis2
g4 fis4 g2 c,1
r1 d'2. c4
b4 a4 g4( f4 ) e4( d4 ) c2
g'1 ~ g1 ~ g1 ~ g1 ~ g1 r1
c,1
}
>>
}
|