blob: a2b4a471cdb4f2ae19f4544ff5a000e77b2ea6a1 (
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
|
%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
sopranMelodie = \relative c' {
<<
{ \meta }
%\sopranArt
%the actual tune
{
e4 e4 b'4 b4 a4 \set melismaBusyProperties = #'() g4( fis4) \unset melismaBusyProperties e4 d4
e4 fis4 g4 a4 b2 s4
e,4 e4 b'4 b4 a4 g4( fis4) e4 d4
e4 fis4 g4 a4 b2 s4
b4
c4 a4 b4 c4 d4 e4 b4 a4 g4 e4 fis4 g4 a2
g4( a4) b2 c4 b4 b4( a4) g4 fis4 e2
g8 fis8 e4 a2
g4( a4) b4( c4) d4 e4 b4( a4) g4 fis4 e2.
\bar "|."
}
>>
}
altMelodie = \relative c' {
<<
{ \meta }
%\altArt
%the actual tune
{
b4 e4 dis4 e4 fis4 e4( dis4) b4 a4
b4 b4 b4 b4 e2 s4
b4 e4 dis4 e4 fis4 e4( dis4) b4 a4
b4 dis4 e4 fis4 g2 s4
g4 e4 fis4 g4 g4 g4 g4 g4 e4 e4 e4 dis4 e4 fis2
e4( fis4) g2 g4 fis4 g4( fis4) e4 d4 c2
d8 d8 c4 e2
e4( fis4) g2 g4 g4 g4( fis4) e4 dis4 b2.
}
>>
}
tenorMelodie = \relative c' {
<<
{ \meta }
%\tenorArt
%the actual tune
\clef "treble_8"
{
g4 b4 a4 b4 c4 b4( a4) g4 a4
g4 fis4 e4 fis4 g2 s4
g4 b4 a4 b4 c4 b4( a4) g4 a4
g4 b4 b4 d4 d2 s4
d4 c4 d4 d4 e4 d4 c4 d4 c4 b4 b4 a4 b4 d2
b4( d4) d2 e4 d4 d2 b4 b4 g2
b8 b8 g4 c2
b4( d4) d4( c4) b4 c4 d4( c4) b4 b4 g2.
}
>>
}
bassMelodie = \relative c {
<<
{ \meta }
%\bassArt
%the actual tune
\clef bass
{
e4 g4 fis4 g4 a4 e4( fis4) g4 fis4
e4 dis4 e4 e4 e2 s4
e4 g4 fis4 g4 a4 e4( fis4) g4 fis4
e4 b4 e4 d4 g2 s4
g4 a4 d,4 g4 c,4 b4 c4 g'4 a4 e4 g4 fis4 e4 d2
e4( d4) g2 c,4 d4 g4( d4) e4 b4 c2
g8 b8 c4 a2
e'4( d4) g2 g4 c,4 g'4( a4) b4 b,4 e2.
}
>>
}
|