diff options
Diffstat (limited to 'Saalburg_du_Perle_am_schoenen_Saalestrand/stimmen.ly')
-rw-r--r-- | Saalburg_du_Perle_am_schoenen_Saalestrand/stimmen.ly | 187 |
1 files changed, 187 insertions, 0 deletions
diff --git a/Saalburg_du_Perle_am_schoenen_Saalestrand/stimmen.ly b/Saalburg_du_Perle_am_schoenen_Saalestrand/stimmen.ly new file mode 100644 index 0000000..77b882f --- /dev/null +++ b/Saalburg_du_Perle_am_schoenen_Saalestrand/stimmen.ly @@ -0,0 +1,187 @@ +%some settings% vim: ai sw=2 lbr nu et + + \version "2.18" + + global = { + \key c \major + %\override Staff.TimeSignature #'style = #'() + \time 3/4 + \autoBeamOff + } + + punktBoegen = { + \set melismaBusyProperties = #'() + \slurDashed + \tieDashed + } + + strichBoegenA = { + \slurSolid + \tieSolid + } + + strichBoegenB = { + \set melismaBusyProperties = #'(melismaBusy slurMelismaBusy tieMelismaBusy beamMelismaBusy) + } + + strichBoegen = { + \strichBoegenA + \strichBoegenB + } + + Cc = \relative c { + c4 <e g c> <e g c> | + } + + Gc = \relative g, { + g4 <e' g c> <e g c> | + } + + Gg = \relative g, { + g4 <g' h d> <g h d> | + } + + Dg = \relative d { + d4 <g h d> <g h d> | + } + + Ggs = \relative g, { + g4 <f' g h> <f g h> | + } + + Ccs = \relative c { + c4 <e h' c> <e h' c> | + } + + Ff = \transpose g f \Gg + Cf = \transpose g f \Dg + +% Die Stimmen + + sopranMelodie = \relative g' { + g2. | + e2 f4 | + g2. | + e2 g4 | + g2 g4~ | + g f e | + d2.~ | + d | + f | + d2 e4 f2. | + \punktBoegen d2( g4) \strichBoegen | + h2 h4~ | + h a a | + g2.~ | + g | + \punktBoegen g4~ g~ g \strichBoegen | + e2 f4 | + g2. | + \punktBoegen e2~ e4 \strichBoegen | + e2 e4~ | + e f g | + a2.~ | + a | + c | + h2 a4 | + \punktBoegen g2.~ | + g2 g4 | + f2~ \strichBoegenA f4~ \strichBoegenB | + f e f | + g2.~ | + g | + c | + h2 a4 | + \punktBoegen g2.~ | + g2 g4 | + a2~ a4 \strichBoegen | + g2 f4 | + e2.~ | + e | \bar "|." + } + + altMelodie = \relative e' { + e2. | + c2 d4 | + e2. | + c2 e4 | + e2 e4~ | + e d c | + h2.~ | + h | + d | + h2 c4 | + d2. | + \punktBoegen h2~ h4 \strichBoegen | + g'2 g4~ | + g f f | + e2.~ | + e | + \punktBoegen e4~ e~ e \strichBoegen | + c2 d4 | + e2. | + \punktBoegen c2~ c4 \strichBoegen | + c2 c4~ | + c d e | + f2.~ | + f | + a | + g2 f4 | + \punktBoegen e2.~ | + e2 e4 | + d2~ \strichBoegenA d4~ \strichBoegenB | + d c d | + e2.~ | + e | + a | + g2 f4 | + \punktBoegen e2.~ | + e2 e4 | + f2~ f4 \strichBoegen | + h,2 d4 | + c2.~ | + c | \bar "|." + } + + begleitungMelodie = \relative c { + \Cc + \Gc + \Cc + \Gc + \Cc + \Gc + \Gg + \Dg + \Gg + \Dg + \Gg + \Dg + \Gg + \Ggs + \Cc + \Gc + \Cc + \Gc + \Cc + \Gc + \Cc + \Ccs + \Ff + \Cf + \Ff + \Cf + \Cc + \Gc + \Ggs + \Ggs + \Cc + \Gc + \Ff + \Cf + \Cc + \Gc + \Ff + \Ggs + \Cc + <c e g c>2. | \bar "|." + } |