summaryrefslogtreecommitdiff
path: root/hr/stch/fertig/gaudeamus/stimmen.ly
diff options
context:
space:
mode:
Diffstat (limited to 'hr/stch/fertig/gaudeamus/stimmen.ly')
-rw-r--r--hr/stch/fertig/gaudeamus/stimmen.ly124
1 files changed, 124 insertions, 0 deletions
diff --git a/hr/stch/fertig/gaudeamus/stimmen.ly b/hr/stch/fertig/gaudeamus/stimmen.ly
new file mode 100644
index 0000000..fffef60
--- /dev/null
+++ b/hr/stch/fertig/gaudeamus/stimmen.ly
@@ -0,0 +1,124 @@
+%some settings% vim: ai sw=2 lbr nu
+\version "2.12.1"
+ global = {
+ \key c \major
+ \override Staff.TimeSignature #'style = #'()
+ \time 3/4
+ }
+
+ meta = {
+ %(dynamic) marks global to all voices
+ \set Timing.beamExceptions = #'()
+ \set Timing.beatStructure = #'(1 1 1)
+ \dynamicUp
+ % bisher nur leere takte
+ \repeat unfold 4 {
+ s4*3
+ }
+ \break
+ \repeat unfold 7 {
+ s4*3
+ }
+ s4*5
+ \bar "||"
+ }
+
+% Die Stimmen
+
+ sopranMelodie = \relative c'' {
+ <<
+ { \meta }
+ %the actual tune
+ {
+ \repeat volta 2 {
+ c8. g16 g4 c4
+ a8. a16 a2
+ b8. c16 d4 b4
+ c8.( e16) c4 r4
+ }
+ b8. c16 d4 d4
+ e8. c16 d4 d4
+ b8. c16 d4 d4
+ e8. c16 d4 d4
+ \break
+ c8. b16 a8 (f'8) e8 (d8)
+ e4( d4) c4
+ c8. b16 a8 (f'8) e8 (d8)
+ \time 2/4 g4( b,4)
+ \time 3/4 c4 r4 r4
+ }
+ >>
+ }
+
+ altMelodie = \relative c'' {
+ <<
+ { \meta }
+ %the actual tune
+ {
+ \repeat volta 2 {
+ g8. e16 e8 (f8) g4
+ f8. f16 f4( g4)
+ f8. g16 a4 g4
+ g4 e4 r4
+ }
+ <g d>8. <g a>16 <g b>4 <g b>4
+ <g c>8. <g a>16 <g b>4 <g b>4
+ <g d>8. <g a>16 <g b>4 <g b>4
+ <g c>8. <g a>16 <g b>4 <g b>4
+ g8. e16 f8 (a8) g8 (a8)
+ g4( f4) e4
+ g8. e16 f8 (a8) g8 (a8)
+ \time 2/4 c8( b16 a16 g4)
+ \time 3/4 g4 r4 r4
+ }
+ >>
+ }
+
+ tenorMelodie = \relative c'' {
+ <<
+ { \meta }
+ %the actual tune
+ {
+ \repeat volta 2 {
+ e8. c16 c4 c4
+ c8. c16 c4( cis4)
+ d8. c16 c8 (f8) e8 (d8)
+ e8.( c16) g4 r4
+ }
+ b8. c16 d4 d4
+ e8. c16 d4 d4
+ b8. c16 d4 d4
+ e8. c16 d4 d4
+ c8. c16 c4 c4
+ c4.( b8) c4
+ c8. c16 c4 c4
+ \time 2/4 e4( d8 f8)
+ \time 3/4 e4 r4 r4
+ }
+ >>
+ }
+
+ bassMelodie = \relative c' {
+ <<
+ { \meta }
+ %the actual tune
+ \clef bass
+ {
+ \repeat volta 2 {
+ c8. c,16 c8 (d8) e4
+ f8. f16 f4( e4)
+ d8. e16 f4 g4
+ c,4 c4 r4
+ }
+ g'8. <g a>16 <g b>4 <g b>4
+ <g c>8. <g a>16 <g b>4 <g b>4
+ g8. <g a>16 <g b>4 <g b>4
+ <g c>8. <g a>16 <g b>4 <g b>4
+ e8. c16 f8 (d8) e8 (f8)
+ g4.( gis8) a4
+ e8. c16 f8 (d8) e8 (f8)
+ \time 2/4 g4( g,4)
+ \time 3/4 c4 r4 r4
+ }
+ >>
+ }