diff options
Diffstat (limited to 'hr/stch/fertig/ros_distler/stimmen.ly')
-rw-r--r-- | hr/stch/fertig/ros_distler/stimmen.ly | 141 |
1 files changed, 141 insertions, 0 deletions
diff --git a/hr/stch/fertig/ros_distler/stimmen.ly b/hr/stch/fertig/ros_distler/stimmen.ly new file mode 100644 index 0000000..0b24a35 --- /dev/null +++ b/hr/stch/fertig/ros_distler/stimmen.ly @@ -0,0 +1,141 @@ +%some settings% vim: ai sw=2 lbr nu encoding=utf8 + + global = { + \key e \major + \time 3/2 + \partial 2 + \cadenzaOn + } + end = {\cadenzaOff} + + meta = { + %(dynamic) marks global to all voices + \dynamicUp + s4*24 %\break + %\repeat unfold <+number of parts+> { + %s4*<+number of measures within a part+> + %} + } + +% articulation + + sopranArt = { + %\repeat unfold <+number of parts+> { + %s4*<+number of measures within a part+> + %} + } + + altArt = { + %\repeat unfold <+number of parts+> { + %s4*<+number of measures within a part+> + %} + } + + tenorArt = { + %\repeat unfold <+number of parts+> { + %s4*<+number of measures within a part+> + %} + } + + bassArt = { + %\repeat unfold <+number of parts+> { + %s4*<+number of measures within a part+> + %} + } + +% Die Stimmen + + sopranMelodie = \relative c'' { + << + { \meta } + %\sopranArt + %the actual tune + { + b2\p + \bar "|" \time 4/4 b4 b4 cis4 b4 + \bar "|" b2 gis2 + \bar "|" a2 gis4 fis4 ~ + \bar "|" fis4 e2 dis4 + \bar "|" \time 3/2 <<{e4.( fis8 gis2)}\\ {e1}>> gis2 + \bar "|" \time 4/4 fis4 dis4 e4 cis4 + \bar "|" b2 b'2 + \bar "|" b4 b4 cis4 b4 + \bar "|" b2 gis2 + \bar "|" a2 gis4 fis4 ~ + \bar "|" fis4 e2 dis4 + \bar "|" <<{e4.( fis8 gis2)}\\ {e1}>> + \bar "||" + } + >> + } + + altMelodie = \relative c' { + << + { \meta } + %\altArt + %the actual tune + { + r4 e4\p + \bar "|" \time 4/4 e4 fis4 a4 a4 + \bar "|" gis4( fis8( e8( fis2 ) ) ) + \bar "|" e4 e4 dis4 b4 + \bar "|" cis4.( dis8( e4 ) ) fis4 + \bar "|" \time 5/4 gis4.( fis8 e2 ) e4 + \bar "|" e4 e4 gis4.( fis8 ) e4 + \bar "|" \time 4/4 \times 2/3 { fis8.( gis16 e8 } fis2) e4 + \bar "|" e4 fis4 a4 a4 + \bar "|" gis4( fis8( e8( fis2 ) ) ) + \bar "|" e4 e4 dis4 b4 + \bar "|" cis4.( dis8( e4 ) ) fis4 + \bar "|" gis4.( fis8( e2 ) ) + \bar "||" + } + >> + } + + tenorMelodie = \relative c' { + << + { \meta } + %\tenorArt + %the actual tune + { + r4 b'4\p + \bar "|" b4 cis4 e4 e4 dis2 + \bar "|" \time 5/4 cis4 cis2 cis4 cis4 + \bar "|" e4.( dis8( b4( cis4 ) ) ) b4 + \bar "|" gis8( a b cis) b2 b4 + \bar "|" b2 gis4 cis4 cis4 + \bar "|" \time 4/4 dis8( cis8 b4 ) b2 + \bar "|" \time 3/2 b4 cis4 e4 e4 dis2 + \bar "|" \time 5/4 cis4 cis2 cis4 cis4 + \bar "|" e4.( dis8( b4( cis4 ) ) ) b4 + \bar "|" \time 4/4 gis8( a b cis b2) + \bar "||" + } + >> + } + + bassMelodie = \relative c { + << + { \meta } + %\bassArt + %the actual tune + \clef bass + { + r2 + \bar "|" \time 4/4 r1 + \bar "|" r2 r4 cis'4\p ~ + \bar "|" cis4 a2 b4 + \bar "|" gis2 fis2 + \bar "|" \time 3/2 e4.( cis8( e2 ) ) e2 + \bar "|" \time 4/4 b4 cis4 e4 e4 + \bar "|" b2. r4 + \bar "|" r1 + \bar "|" r2 r4 cis'4 ~ + \bar "|" cis4 a2 b4 + \bar "|" gis2 fis2 + \bar "|" e1 + \bar "||" + } + >> + } |