summaryrefslogtreecommitdiff
path: root/hr/stch/fertig/joshua/stimmen.ly
diff options
context:
space:
mode:
authorErich Eckner <git@eckner.net>2014-09-10 17:47:07 +0200
committerErich Eckner <git@eckner.net>2014-09-10 17:47:07 +0200
commit49d14358c33b7d0ba7e7c381f91943617c7723ea (patch)
treefd55f0d3900d53978587d2228553359f86e69bbe /hr/stch/fertig/joshua/stimmen.ly
parent646f69a657326ca8dd733dfa579a90f89823d677 (diff)
downloadMusik-49d14358c33b7d0ba7e7c381f91943617c7723ea.tar.xz
Hauke eingefügt
Diffstat (limited to 'hr/stch/fertig/joshua/stimmen.ly')
-rw-r--r--hr/stch/fertig/joshua/stimmen.ly90
1 files changed, 90 insertions, 0 deletions
diff --git a/hr/stch/fertig/joshua/stimmen.ly b/hr/stch/fertig/joshua/stimmen.ly
new file mode 100644
index 0000000..7f1ae56
--- /dev/null
+++ b/hr/stch/fertig/joshua/stimmen.ly
@@ -0,0 +1,90 @@
+%some settings% vim: ai sw=2 lbr nu et
+
+ \version "2.12"
+ \include "dynArt.ly"
+
+ global = {
+ \key e \minor
+ %\override Staff.TimeSignature #'style = #'()
+ \time 4/4
+ %\autoBeamOff
+ }
+
+% Die Stimmen
+
+ sopranMelodie = \relative c' {
+ <<
+ { \meta }
+ %\sopranArt
+ %the actual tune
+ {
+ r1
+ }
+ >>
+ }
+
+ altMelodie = \relative c' {
+ <<
+ { \meta }
+ %\altArt
+ %the actual tune
+ {
+ r1
+ }
+ >>
+ }
+
+ tenorMelodie = \relative c' {
+ <<
+ { \meta }
+ %\tenorArt
+ %the actual tune
+ \clef "treble_8"
+ {
+ r1
+ }
+ >>
+ }
+
+ bassMelodie = \relative c {
+ <<
+ { \meta }
+ %\bassArt
+ %the actual tune
+ \clef bass
+ {
+ e4 r8 e8( d4) r8 d8( c4) r8 c8( b4) dis4
+ e4 r8 e8( d4) r8 d8( c4) r8 c8( b4) dis4
+ \mark \markup { \smaller \musicglyph #"scripts.segno" }
+ \repeat volta 2 {
+ e4 r8 e8( d4) r8 d8( c4) r8 c8( b4) e4
+ b4 r8 dis8( fis4) b,4
+ e8 e8( d4) c4 b4
+ e4 r8 e8( d4) r8 d8( c4) r8 c8( b4) e4
+ b4 c4 cis4 dis4
+ \mark \markup { \smaller \musicglyph #"scripts.coda" }
+ } \alternative {
+ {
+ e4 d4 c4 b4
+ }
+ {
+ e4 b4 e4 r4
+ }
+ }
+ e1 ~
+ e1
+ e1
+ fis1
+ e1 ~
+ e1
+ b4 c4 cis4 dis4
+ e4^\markup { "D. S. al Coda" } d4 c4 b4
+ \bar "||"
+ \mark \markup { \musicglyph #"scripts.coda" }
+ \set melismaBusyProperties = #'()
+ r8 c'8( b8 e,8) r4 \override NoteHead #'style = #'cross d4
+ \bar "|."
+ }
+ >>
+ }
+