blob: b469561a4178e06d2bc4b22f9425b5f1fbc24bbc (
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
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
|
%some settings% vim: ai sw=2 lbr nu encoding=utf8 et
\version "2.12"
\include "dynArt.ly"
global = {
\key a \major
%\override Staff.TimeSignature #'style = #'()
\time 3/4
\autoBeamOff
}
% 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
\clef "treble_8"
{
r1
}
>>
}
bassMelodie = \relative c {
<<
{ \meta }
%\bassArt
%the actual tune
\clef bass
{
fis8. fis16 e8 d8 cis16( b16) a16 gis16
fis4 r8 fis8( b4)
fis'8. fis16 e8 d8 cis16( b16) a16 gis16
fis4 r8 fis8 b8 b8
r4 r8 fis8 b8 b8
r4 r8 fis8 b8 b8
R2.
r4 r8 b16( fis16) b8 b16 b16
r4 r8 b16( fis16) b8 b16 b16
r4 r8 b16( fis16) b8 b16 b16
r4 r8 b16( fis16) b8 b16 b16
R2.
a4( e'4 fis4
gis4 cis,4 e4)
a,4( e'4 fis4
gis4 cis,4 e4)
a,4( b4 cis4
e4 fis2) ~
fis8. fis16 eis8 dis8 cis16( b16) ais16 gis16
fis4 r8 fis8( b4)
fis'8. fis16 e8 d8 cis16( b16) a16 gis16
fis4 r4 r4
R2.
R2.
r4 r4 e'8 e16 e16
a,4 r4 r4
r4 r4 e'8 e16 e16
a,4 r4 r4
r8 d16 d16 g,8 d'8 cis4
r8 d16 d16 g,8 d'8 ~ d4 ~
d4 r4 r4
\bar "||"
\key c \major
<<
{
c4 ~ c8 c16 c16 g8 g8
c4 ~ c8 c16 c16 g8 g8
d'4 ~ d8 d16 d16 b8 b16 b16
a8 a16 a16 d8 d16 d16 e8 e16 e16
c4 ~ c8 c16 c16 g8 g8
c4 ~ c8 c16 c16 g8 g8
d'4 ~ d8 d16 d16 b8 b16 b16
a8 a16 a16 d8 d16 d16 f8 f16 f16
}
\\
{
c2 g4
c2 g4
d'2 b4
a4 d4 e4
c2 g4
c2 g4
d'2 b4
a4 d4 f4
}
>>
\bar "||"
\key a \major
fis8. fis16 e8 d8 cis16( b16) a16 gis16
fis4 ~ fis8 r8 r4
fis8 fis16 fis16 ~ fis2
r4 d'8 d16 d16 a4
r4 a8 a16 a16 d4
r4 d8 d16 d16 a4
r4 a8 a16 a16 d4 ~
d8 d16 d16 d8 d16 d16
<<
{
c4 ~
c8 c16 c16 d4 c8 c16 c16
d4 c8 c16 c16 d4
fis8 cis16 cis16 cis2 ~
cis4
}
\\
{
c16( b16) a16 gis16
fis2. ~
fis2.
fis2. ~
fis4
}
>>
r4 r4
}
>>
}
|