diff options
author | Erich Eckner <git@eckner.net> | 2014-09-04 10:59:12 +0200 |
---|---|---|
committer | Erich Eckner <git@eckner.net> | 2014-09-04 10:59:12 +0200 |
commit | cd2759024b1ad36d3ac6e15e5a2bbe43d80bcfcd (patch) | |
tree | 25be2d35abeec51d18d0204e199f3bdbf66826b1 /Nun_danket_alle_Gott/stimmen.ly | |
download | Musik-cd2759024b1ad36d3ac6e15e5a2bbe43d80bcfcd.tar.xz |
initialer Commit
Diffstat (limited to 'Nun_danket_alle_Gott/stimmen.ly')
-rw-r--r-- | Nun_danket_alle_Gott/stimmen.ly | 142 |
1 files changed, 142 insertions, 0 deletions
diff --git a/Nun_danket_alle_Gott/stimmen.ly b/Nun_danket_alle_Gott/stimmen.ly new file mode 100644 index 0000000..e19f811 --- /dev/null +++ b/Nun_danket_alle_Gott/stimmen.ly @@ -0,0 +1,142 @@ +%some settings% vim: ai sw=2 lbr nu et + + \version "2.12" + + global = { + \key f \major + %\override Staff.TimeSignature #'style = #'() + \time 4/4 + %\autoBeamOff + } + +% Die Stimmen + + generalPausen = { + \set Score.skipBars = ##t + { + r2 s2 + \repeat volta 2 { + s1*3 + R1*2 r2 + s2 s1*4 + R1*3 + } \alternative {{ r2 s2 } { R1 }} + r2 + s2 s1*2 s2 + r2 R1*3 r2 + s2 s1*3 + R1*4 r2 + s2 s1*3 + R1*3 r2 + s2 s1*3 + R1*7 | + } + } + + pauseI = { + s4. | + s2. s4. | + } + pauseII = { + s4. | + \repeat unfold 2 { s1*9/8 | } + } + + sopranMelodie = \relative c'' { + << + %the actual tune + { + s2 c | + \repeat volta 2 { + c c | d d | c1 | + s1*2 s2 + a2 | b a | g a | g1 | f | + s1*3 + } \alternative {{ s2 c'2 } { s1 }} + s2 + g2 | g g | a a | g + s2 s1*3 s2 + g2 | a4( h) c2 | c h | c1 | + s1*4 s2 + c2 | d c | b a | b1 | + s1*3 s2 + a2 | g a | g g | f1 | + s1*7 + } + >> + } + + altMelodie = \relative c' { + << + %the actual tune + { + s2 f | + \repeat volta 2 { + f a | b b | a1 | + s1*2 s2 + f2 | g f | e f | f( e) | c1 | + s1*3 + } \alternative {{ s2 f } { s1 }} + s2 + e2 | e e | f f | g + s2 s1*3 s2 + g2 | f g | g g | g1 | + s1*4 s2 + a2 | b a | f f | f1 | + s1*3 s2 + f2 | e f | f e | c1 | + s1*7 + } + >> + } + + tenorMelodie = \relative c' { + << + %the actual tune + \clef "treble_8" + { + s2 a | + \repeat volta 2 { + a4( c) f2 | f f | f1 | + s1*2 s2 + c2 | c c | c c | c2.( g4) | a1 | + s1*3 + } \alternative {{ s2 a } { s1 }} + s2 + c2 | c c | c c4( d) | e2 + s2 s1*3 s2 + c2 | c4( d) e2 | d d | e1 | + s1*4 s2 + f2 | f es | d c | d1 | + s1*3 s2 + c2 | c c | c c | a1 | + s1*7 + } + >> + } + + bassMelodie = \relative c { + << + %the actual tune + \clef bass + { + s2 f | + \repeat volta 2 { + f f | b b, | f'1 | + s1*2 s2 + f2 | e f | c4( b) a( f) | c'1 | f,1 | + s1*3 + } \alternative {{ s2 f' } { s1 }} + s2 + c2 | c c | f f, | c' + s2 s1*3 s2 + e2 | f e4( f) | g2 g, | c1 | + s1*4 s2 + f2 | b, c | d4( es) f2 | b,1 | + s1*3 s2 + f'2 | c' f, | c c | f1 | + s1*7 + } + >> + } + |