diff options
author | Erich Eckner <git@eckner.net> | 2018-01-19 11:40:17 +0100 |
---|---|---|
committer | Erich Eckner <git@eckner.net> | 2018-01-19 11:40:17 +0100 |
commit | 8a1ec77260fd4f68efd176cc6912634ad3ebe9ff (patch) | |
tree | db70b3ca0e208d84c6216f1fb2101ea005119778 /Ronja_Raeubertochter | |
parent | 294add20a76ffc6334f830eb0aac534b59d2abbb (diff) | |
download | Musik-8a1ec77260fd4f68efd176cc6912634ad3ebe9ff.tar.xz |
Ronja_Raeubertochter: midi für alle!
Diffstat (limited to 'Ronja_Raeubertochter')
-rw-r--r-- | Ronja_Raeubertochter/Ronja_Raeubertochter.ly | 126 |
1 files changed, 90 insertions, 36 deletions
diff --git a/Ronja_Raeubertochter/Ronja_Raeubertochter.ly b/Ronja_Raeubertochter/Ronja_Raeubertochter.ly index f703a1b..dc47453 100644 --- a/Ronja_Raeubertochter/Ronja_Raeubertochter.ly +++ b/Ronja_Raeubertochter/Ronja_Raeubertochter.ly @@ -16,49 +16,103 @@ print-all-headers = ##t } -\score { - \header { - title = "Ronja Räubertochter" - subtitle = "Titelmelodie des schwedischen Kinofilms" - composer = "Björn Isfält" - arranger = "Notensatz: Conrad Haase" - meter = "Andante con moto" - tagline = "" - } +\book { + \score { + \header { + title = "Ronja Räubertochter" + subtitle = "Titelmelodie des schwedischen Kinofilms" + composer = "Björn Isfält" + arranger = "Notensatz: Conrad Haase" + meter = "Andante con moto" + tagline = "" + } - \new Staff << - \set Score.skipBars = ##t - \new ChoirStaff << - \new Lyrics = textSopran { } - \new Staff << - \new Voice = solo { \global \oneVoice \melodieSolo } + \new Staff << + \set Score.skipBars = ##t + \new ChoirStaff << + \new Lyrics = textSopran { } + \new Staff << + \new Voice = solo { \global \oneVoice \melodieSolo } + >> + \new Lyrics = textMelodie { } + \new Staff << + \clef "G_8" + \new Voice = bgPausen { \global \oneVoice \bgPausen } + \new Voice = bgOben { \global \voiceOne \melodieBackgroundOben } + \new Voice = bgUnten { \global \voiceTwo \melodieBackgroundUnten } + >> + \new Lyrics = textBackground { } >> - \new Lyrics = textMelodie { } - \new Staff << - \clef "G_8" - \new Voice = bgPausen { \global \oneVoice \bgPausen } - \new Voice = bgOben { \global \voiceOne \melodieBackgroundOben } - \new Voice = bgUnten { \global \voiceTwo \melodieBackgroundUnten } - >> - \new Lyrics = textBackground { } + + \context Lyrics = textMelodie \lyricsto solo { \textSolo } + \context Lyrics = textBackground \lyricsto bgOben { \textBackground } >> + \layout { + indent = #0 + \context { + \Staff + \RemoveEmptyStaves + \override VerticalAxisGroup #'remove-first = ##t + } + } + \midi { + \context { + \Score + tempoWholesPerMinute = #(ly:make-moment 60 4) + } + } + } +} - \context Lyrics = textMelodie \lyricsto solo { \textSolo } - \context Lyrics = textBackground \lyricsto bgOben { \textBackground } - >> - \layout { - indent = #0 - \context { - \Staff - \RemoveEmptyStaves - \override VerticalAxisGroup #'remove-first = ##t +\book { + \bookOutputSuffix "Melodie" + \score { + \unfoldRepeats { + \new Staff { + \new Voice = solo { \global \melodieSolo } + } + } + \midi { + \context { + \Score + tempoWholesPerMinute = #(ly:make-moment 60 4) + } } } - \midi { - \context { - \Score - tempoWholesPerMinute = #(ly:make-moment 60 4) +} + +\book { + \bookOutputSuffix "Begleitung-Oben" + \score { + \unfoldRepeats { + \new Staff { + \clef "G_8" + \new Voice = bgOben { \global << \melodieBackgroundOben \bgPausen >> } + } + } + \midi { + \context { + \Score + tempoWholesPerMinute = #(ly:make-moment 60 4) + } } } } +\book { + \bookOutputSuffix "Begleitung-Unten" + \score { + \unfoldRepeats { + \new Staff { + \clef "G_8" + \new Voice = bgOben { \global << \melodieBackgroundUnten \bgPausen >> } + } + } + \midi { + \context { + \Score + tempoWholesPerMinute = #(ly:make-moment 60 4) + } + } + } +} |