blob: e1ebbb68f729cb6bf12f0ce10aa3c9504bad28ac (
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
|
%some settings% vim: ai sw=2 lbr nu encoding=utf8 et
\version "2.12"
\include "dynArt.ly"
global = {
\key g \major
%\override Staff.TimeSignature #'style = #'()
\time 4/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
{
\repeat volta 2 {
e4 d4 c4. b8
a4( b4) e2
e4 a8( g8) fis4 g8( fis8)
e8( fis8 g8 a8) b2
c4 b8( a8) b4 b,4
e1
}
e8( fis8) g4 fis4 g4
c,4 d4 g,2
g'4 fis8( e8) fis4 g8( fis8)
e4 b4 e4( fis4)
b,2 e4 d4
c4 b4 a4( b4)
e1
\bar "||"
\time 3/2
\repeat unfold 2 {
e2 g2 fis2
g2 r2 r2
gis2 r2 r2
r2 a4( g4) fis4( e4)
dis2. dis4 dis4 b4
e2. fis4 g4 fis4
g4 e4 c2. c4
b2 r2 r2
}
b2 b'2 a2
gis2 e'2 e,2
a4( b4 a4 g4 fis4 e4
dis4 b4 b'4 a4 g4 fis4
e2) e2 r2
R1.
R1.
R1.
R1.
R1.
b4 b4 b4 b4 cis4 dis4
e4 ais,2 b2 cis4
d1. ~
d4( cis8 b8 cis4 d4 e4 fis4
g4 cis,2 d2 e4
fis4 b,2 cis2 d4
e4 d4) e2 r2
r2 d2 fis2
g2( e2) fis2
b1 r2
\repeat unfold 2 {
b2 d2 cis2
d2 r2 r2
dis2 r2 r2
r2 e4( d4) cis4( b4)
ais2. ais4 ais4 fis4
b2. cis4 d4 cis4
d4 b4 g'2. g4
fis2 r2 r2
}
R1.
R1.
r4 e4 gis4 fis4 gis4 e4
a1. ~
a2. b4 a4 g4
fis2. e4 fis4 d4
g4( fis4) g4 a4
}
>>
}
|