blob: 3f284c7c9eb4d40f013a449c2d178c50719c97c9 (
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
|
%some settings% vim: ai sw=2 lbr nu et
\version "2.18"
globalGloria = {
\key f \major
%\override Staff.TimeSignature #'style = #'()
\time 4/4
\autoBeamOff
}
% Die Stimmen
melodieSopranGloria = \relative c'' {
\new CueVoice {
c4 f,8 f~ f2~ |
f2. e8 f |
d'4 f,8 f~ f2~ |
f2. e8 f |
e'4 g,8 g~ g2~ |
g r8 d' e f~ |
f2~ f8 e d c~ |
c1 |
}
\repeat volta 2 {
c4 f,8 f~ f2 |
R1 |
d'4 f,8 f~ f2 |
R1 |
e'4 g,8 g~ g2 |
r2 r8 d' e f~\( |
f1 |
f2( e8)\) r4. |
}
r2
\new CueVoice {
f,8 g a c~ |
c b a a4 g8 f4 |
d2. c8 c~ |
c1 |
r2 f8 g a c~ |
c b a a4 g8 f4 |
d'2. c8 c~ |
c1 |
}
c4 f,8 f4. f8 f |
c'4.( f,) c'4 |
d4. c8~ c2 |
r2. a8 a |
b4. b b8 b |
a4 a8 g4.( f4) |
d2 e |
f g |
b4. a8~ a2 |
R1 |
\new CueVoice {
d8 r4 d8~ d2 |
R1 |
b8 r4 a4. f4 |
f g b
}
c4 |
c2 c4. d8 |
r2. c8 c |
c4. f e8 d |
r2. c8 c |
c2 c4. d8 |
r2 r8 c c c |
c4.( f) e8 d |
R1 |
c4. a f4 |
c'4. g e4 |
f g a b |
c d es8 es f4 |
f1 |
e2.
\new CueVoice {
b16 c d e | % Takt 52
}
}
melodieAltGloria = \relative f' {
R1*8 |
\repeat volta 2 {
f4 f8 f~ f2 |
}
}
melodieTenorGloria = \relative a {
R1*8 |
\repeat volta 2 {
a4 a8 a~ a2 |
}
}
melodieBassGloria = \relative f {
R1*8 |
\repeat volta 2 {
f4 f8 f~ f2 |
}
}
|