blob: c0700ddb7560f2ba3456d404175d8a268568c391 (
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
|
global = {
\time 3/4
\key g \major
\partial 4
\autoBeamOff
}
punktBoegen = {
\set melismaBusyProperties = #'()
\slurDashed
\tieDashed
}
strichBoegen = {
\set melismaBusyProperties = #'(melismaBusy slurMelismaBusy tieMelismaBusy beamMelismaBusy)
\slurSolid
\tieSolid
}
melodie = \relative h {
h4 |
e e e |
g2 g4 |
fis fis fis |
dis2\breathe h4 |
e2 e4 |
g fis g |
h h2~ |
h\breathe
\repeat volta 2 {
h4 |
c c h |
a2 c4 \punktBoegen |
h~ h \strichBoegen a4 |
g2\breathe g4 |
fis fis fis |
dis2 dis4 |
e2. |
e2
}
}
akkorde = \chordmode {
s4 |
e2.:m |
a:m7 |
h:7 |
h |
e:m |
c |
e:m |
h2:7
\repeat volta 2 {
e4:7 |
a2.:m7 |
d:7 |
g |
c |
a:m |
h:7 |
e:m |
e2:7
}
}
|