diff options
Diffstat (limited to 'hr/stch/fertig/magnum_l/magnum_l.ly')
-rw-r--r-- | hr/stch/fertig/magnum_l/magnum_l.ly | 97 |
1 files changed, 97 insertions, 0 deletions
diff --git a/hr/stch/fertig/magnum_l/magnum_l.ly b/hr/stch/fertig/magnum_l/magnum_l.ly new file mode 100644 index 0000000..6e6745a --- /dev/null +++ b/hr/stch/fertig/magnum_l/magnum_l.ly @@ -0,0 +1,97 @@ +%some settings% vim: ai sw=2 lbr nu et + +\version "2.18" +\include "dynArt.ly" +\include "stimmen.ly" +\include "texte.ly" + +\pointAndClickOff + + \header { + title = "O Magnum Mysterium" + composer = "Morten Lauridsen" + %opus = "<+Werk+>" + tagline = \markup { + %\bold "studentenchor" + } + } + + \paper { + line-width = \paper-width - 30 + top-margin = 10 + bottom-margin = 10 + ragged-last-bottom = #'f + } + %#(set-default-paper-size "a4" 'landscape) + + \layout { + indent = #0 + \context { + \Staff + \override VerticalAxisGroup #'minimum-Y-extent = #'(-3 . 3.5) + } + } + + #(set-global-staff-size 14) + + sop = << + %\new Voice = "meta" { s1*<+Anzahl der Takte+> \bar "|." } + \new Voice = "sopA" { \global \sSolo } + << + \new Voice = "soprane" { \global \sopranMelodie } + \addlyrics { \sopranText } + >> + \new NullVoice = "saligner" { \sSolo } + >> + + alt = << + \new Voice = "alti" { \global \altMelodie } + \addlyrics { \altText } + >> + + ten = { \dynamicUp << + \meta + \tenorArt + { \nalt } + { \partcombine + { \tenorMelodieA } + { \tenorMelodieB } + } + \new NullVoice = "taligner" { \tenorMelodieA } + %\new Voice = "tenoere" { \global \tenorMelodieA } + %\lyricsto "t1" { \tenorText } + %\lyricsto "one" \tenorText + % \new Lyrics { \lyricsto "one" \tenorText } + %\new Lyrics { \lyricsto "tenoere" \tenorText } + >> } + + bas = << + \new Voice = "baesse" { \global \bassMelodie } + \addlyrics { \bassText } + >> + + \score { + \new ChoirStaff \with { printPartCombineTexts = ##f \accepts Devnull } << + \new Staff = sopran { \sop } + \new Lyrics \with { alignAboveContext = sopran } { + \lyricsto "saligner" \sSoloText + } + \new Staff = alt { \alt } + \new Staff = tenor { \ten } + %\new Staff = extra { \new Voice { \global \tenorMelodieB } } + \new Lyrics { \lyricsto "taligner" \tenorText } + \new Staff = bass { \bas } + >> + %{ + \midi { + \context{ + \Score + %tempoWholesPerMinute = #(ly:make-moment 72 4) + tempoWholesPerMinute = #(ly:make-moment 80 4) + } + } + %} + \layout { + } + } + |