summaryrefslogtreecommitdiff
path: root/hr/quartett/machaut/stimmen.ly
diff options
context:
space:
mode:
Diffstat (limited to 'hr/quartett/machaut/stimmen.ly')
-rw-r--r--hr/quartett/machaut/stimmen.ly60
1 files changed, 60 insertions, 0 deletions
diff --git a/hr/quartett/machaut/stimmen.ly b/hr/quartett/machaut/stimmen.ly
new file mode 100644
index 0000000..ae98bc7
--- /dev/null
+++ b/hr/quartett/machaut/stimmen.ly
@@ -0,0 +1,60 @@
+%some settings% vim: ai sw=2 lbr nu et
+
+ \version "2.14"
+ \include "dynArt.ly"
+
+ global = {
+ \key c \major
+ %\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
+ {
+ r1
+ }
+ >>
+ }
+