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 /All_Night,_All_Day/stimmen.ly | |
download | Musik-cd2759024b1ad36d3ac6e15e5a2bbe43d80bcfcd.tar.xz |
initialer Commit
Diffstat (limited to 'All_Night,_All_Day/stimmen.ly')
-rw-r--r-- | All_Night,_All_Day/stimmen.ly | 99 |
1 files changed, 99 insertions, 0 deletions
diff --git a/All_Night,_All_Day/stimmen.ly b/All_Night,_All_Day/stimmen.ly new file mode 100644 index 0000000..e51e83d --- /dev/null +++ b/All_Night,_All_Day/stimmen.ly @@ -0,0 +1,99 @@ +%some settings% vim: ai sw=2 lbr nu et + + \version "2.12" + + global = { + \key a \major + %\override Staff.TimeSignature #'style = #'() + \time 2/4 + \autoBeamOff + } + +% Die Stimmen + + sopranMelodieRefrain = \relative c' { + << + %the actual tune + { + e2 | a | cis | a | fis4 a | a8 fis a fis | a a4. | fis8( e4.) | + e2 | a | cis | a | e'4 cis | cis8. a16 h8 gis | a2~ | a | \bar "||" + } + >> + } + + altMelodieRefrain = \relative c' { + << + %the actual tune + { + cis2 | cis | e | cis | d4 fis | fis8 d fis d | fis fis4. | d2 | + cis | e4( fis) | fis2 | e | fis | fis | e4 d | cis2 | \bar "||" + } + >> + } + + tenorMelodieRefrain = \relative c { + << + %the actual tune + \clef "treble_8" + { + r4 e | fis( e) | r e | fis( e) | r a | h( cis) | h( a) | gis a8[( +h]) | + a2 | cis | a4( h) | h( a) | a2 | cis4( d) | g, f | e2 | \bar "||" + } + >> + } + + bassMelodieRefrain = \relative c { + << + %the actual tune + \clef bass + { + a2 | a | a | a | d | d | d | e4 fis8[( gis]) | + a4( gis) | fis( e) | d2 | cis | d | e | c4 b | a2 | \bar "||" + } + >> + } + + sopranMelodieStr = \relative c' { + << + %the actual tune + { + e2 | a | cis | a | fis4 a | a8 fis a fis | a a4. | fis8( e4.) | + e2 | a | cis | a | e'4 cis | cis8. a16 h8 gis | a2~ | a | \bar "||" + } + >> + } + + altMelodieStr = \relative c' { + << + %the actual tune + { + cis2 | cis | e | cis | d4 fis | fis8 d fis d | fis fis4. | d2 | + cis | e4( fis) | fis2 | e | fis | fis | e4 d | cis2 | \bar "||" + } + >> + } + + tenorMelodieStr = \relative c { + << + %the actual tune + \clef "treble_8" + { + r4 e | fis( e) | r e | fis( e) | r a | h( cis) | h( a) | gis a8[( +h]) | + a2 | cis | a4( h) | h( a) | a2 | cis4( d) | g, f | e2 | \bar "||" + } + >> + } + + bassMelodieStr = \relative c { + << + %the actual tune + \clef bass + { + cis2 | fis | cis4 cis | fis( e) | d2 | d | d | e4 fis8[( gis]) | + a4 gis | fis e | cis cis | h( cis) | d2 | e | c4 c | b2 | \bar "|." + } + >> + } + |