diff options
Diffstat (limited to 'hr/stch/tenor/wetter/stimmen.ly')
-rw-r--r-- | hr/stch/tenor/wetter/stimmen.ly | 60 |
1 files changed, 60 insertions, 0 deletions
diff --git a/hr/stch/tenor/wetter/stimmen.ly b/hr/stch/tenor/wetter/stimmen.ly new file mode 100644 index 0000000..8fc1f86 --- /dev/null +++ b/hr/stch/tenor/wetter/stimmen.ly @@ -0,0 +1,60 @@ +%some settings% vim: ai sw=2 lbr nu et + + \version "2.12" + \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 + } + >> + } + |