blob: f53e3f40cfe1c29b5a9a96c30a0aae0dc36bfb48 (
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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
|
%some settings% vim: ai sw=2 lbr nu encoding=utf8
global = {
\key c \major
\override Staff.TimeSignature #'style = #'()
\time 3/4
\partial 4
}
meta = {
%(dynamic) marks global to all voices
\dynamicUp
%\repeat unfold <+number of parts+> {
%s4*<+number of measures within a part+>
%}
}
% articulation
sopranArt = {
%\repeat unfold <+number of parts+> {
%s4*<+number of measures within a part+>
%}
}
altArt = {
%\repeat unfold <+number of parts+> {
%s4*<+number of measures within a part+>
%}
}
tenorArt = {
%\repeat unfold <+number of parts+> {
%s4*<+number of measures within a part+>
%}
}
bassArt = {
%\repeat unfold <+number of parts+> {
%s4*<+number of measures within a part+>
%}
}
% Die Stimmen
sopranMelodie = \relative c' {
<<
{ \meta }
%\sopranArt
%the actual tune
{
a'4 c4. c8 a8 a8
c4. c8 a8 c8
\time 4/4 c4 d4 c4 a4
\time 3/4 g8( a8 f8 g8~g8 ) g8
b4. b8 g8 g8
b4 a4 g4
\time 7/8 g4 g8 e8 fis4 fis8
\time 3/4 g2
}
>>
}
altMelodie = \relative c' {
<<
{ \meta }
%\altArt
%the actual tune
{
f4 g4. a8 f8 f8
g4. a8 f8 a8
c4. c8 a4 g4
e8( f8( d8( e8 ~ e8 ) ) ) ees8
g4. f8 ees8 f8
g4 f4 ees4
d4 d8 d8 d4 d8
g2
}
>>
}
tenorMelodie = \relative c' {
<<
{ \meta }
%\tenorArt
%the actual tune
{
c4 d4. d8 c8 c8
d4. d8 c8 c8
a4 f4 c'4 c4
c8( d8( bes8( c8 ~ c8 ) ) ) c8
d4. d8 d8 c8
d4. d8 c4
c4 c8 bes8 a4 a8
g2
}
>>
}
bassMelodie = \relative c {
<<
{ \meta }
%\bassArt
%the actual tune
\clef bass
{
c4 f4. f8 c8 c8
f4. f8 c8 c8
f4 a4 f4 f4
c2 c4
f4. f8 c8 c8
f4. f8 c4
g'4 g8 g8 d4 d8
g,2
}
>>
}
|