\include "deutsch.ly" #(ly:set-option 'relative-includes #t) \include "stimmen.ly" \include "texte.ly" #(ly:set-option 'relative-includes #f) %spezifisch% \pointAndClickOff \header { tagline = "" } \paper { top-margin = 5 print-all-headers = ##t } \book { \bookOutputSuffix "Alle" \score { \unfoldRepeats { \global << \new Voice { \voiceOne \sopranMelodie } \new Voice { \voiceTwo \altMelodie } \new Voice { \voiceThree \tenorMelodie } \new Voice { \voiceFour \bassMelodie } >> } \midi { \context { \Score tempoWholesPerMinute = #(ly:make-moment 50 2) } } } } \book { \bookOutputSuffix "Sopran" \score { \unfoldRepeats { \global \sopranMelodie } \midi { \context { \Score tempoWholesPerMinute = #(ly:make-moment 50 2) } } } } \book { \bookOutputSuffix "Alt" \score { \unfoldRepeats { \global \altMelodie } \midi { \context { \Score tempoWholesPerMinute = #(ly:make-moment 50 2) } } } } \book { \bookOutputSuffix "Tenor" \score { \unfoldRepeats { \global \tenorMelodie } \midi { \context { \Score tempoWholesPerMinute = #(ly:make-moment 50 2) } } } } \book { \bookOutputSuffix "Bass" \score { \unfoldRepeats { \global \bassMelodie } \midi { \context { \Score tempoWholesPerMinute = #(ly:make-moment 50 2) } } } } \book { \score { \header { title = "Thank you for the music" poet = "Abba" } \new ChoirStaff << \set Score.skipBars = ##t \new Staff << \new Voice = "frauen" { \global \oneVoice \frauenPausen } \new Voice = "sopran" { \global \voiceOne \sopranMelodie } \new Voice = "alt" { \global \voiceTwo \altMelodie } >> \new Lyrics = "textEins" {} \new Lyrics = "textZwei" {} \new Staff = "maenner" << \clef "bass" \new Voice = "frauen" { \global \oneVoice \maennerPausen } \new Voice = "tenor" { \global \voiceOne \tenorMelodie } \new Voice = "bass" { \global \voiceTwo \bassMelodie } >> \context Lyrics = "textEins" \lyricsto "sopran" \textFrauen \context Lyrics = "textZwei" \lyricsto "tenor" \textMaenner >> \layout { indent = #0 } } }