blob: 11e9c33f1caf41c2e0ca4403e8996a09132d0a92 (
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
|
%some settings% vim: ai sw=2 lbr nu et
\version "2.12"
\include "dynArt.ly"
global = {
\key g \major
%\override Staff.TimeSignature #'style = #'()
\time 4/4
%\autoBeamOff
\partial 4
}
% Die Stimmen
frauenPausen = {
s4
s1*7
s2. r4
}
maennerPausen = {
s4
s1*7
s2. r4
s1*3
s2. r4
r1
%r2 r4 s4
}
sopranMelodie = \relative c'' {
<<
{ \meta }
%\sopranArt
%the actual tune
{
g4
g2 d4 g4 a2 d,2
d'4 d4 d4 e4 d2 d4 b4
b4( cis4) d4 a4 a2 d4 d,4
a'2( g4.) fis8 fis2. s4
d'2 c4 b4 c2 b2
d4 d4 e4 e4 a,2 a4 r4
r1
r2 r4 d4 d1 ~ d2. d8( e8)
fis4 e4 d4 c4 c4( b2) g4
d'2( c4.) b8 b1
\bar "||"
}
>>
}
altMelodie = \relative c'' {
<<
{ \meta }
%\altArt
%the actual tune
{
g4
g2 d4 g4 a2 d,2
b'4 a4 b4 c4 b2 a4 g4
g2 fis4 e4 fis4( g4) a4 b4
fis2( e4.) d8 d2. s4
d'2 c4 b4 c2 b2
a4 b4 g4 a4 fis2 d4 g4
g4 fis4 g4 a4 g2 d4
b'4 b4 a4 b4 c4 b2 a4
b4 c4 b4 a4 g4 fis2 g4( c4)
b2( a4.) g8 g1
}
>>
}
tenorMelodie = \relative c' {
<<
{ \meta }
%\tenorArt
%the actual tune
\clef "treble_8"
{
g4
g2 d4 g4 a2 d,2
g4 a4 g4 g4 g2 fis4 g4
g2 a4 a4 a4( g4) fis4 e4
d2( cis4.) d8 d2. s4
d'2 c4 b4 c2 b2
a4 g4 b4 c4 a2 fis4 s4
s1
r2 r4 g4
g4 fis4 g4 a4 g2 fis4 g4
a4 g4 fis4 e4 d4( dis4) e8( fis8 g4)
g4( e4 fis4.) g8 g1
}
>>
}
bassMelodie = \relative c' {
<<
{ \meta }
%\bassArt
%the actual tune
%\clef bass
{
g4
g2 d4 g4 a2 d,2
g4 fis4 g4 c,4 d2 d4 e4
e2 d4 cis4 d2 d4 g,4
a2 ~ a4. d8 d2. s4
d'2 c4 b4 c2 b2
fis4 g4 e4 c4 d2 d4 s4
s1
r1
r1
r2 r4 g4
a4 g4 fis4 e4 d4( dis4) e2
d2 ~ d4. g8 g1
}
>>
}
|