summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--Wir_lieben_sehr_im_Herzen_/Wir_lieben_sehr_im_Herzen_.ly97
1 files changed, 84 insertions, 13 deletions
diff --git a/Wir_lieben_sehr_im_Herzen_/Wir_lieben_sehr_im_Herzen_.ly b/Wir_lieben_sehr_im_Herzen_/Wir_lieben_sehr_im_Herzen_.ly
index 6ca188e..6b3dda4 100644
--- a/Wir_lieben_sehr_im_Herzen_/Wir_lieben_sehr_im_Herzen_.ly
+++ b/Wir_lieben_sehr_im_Herzen_/Wir_lieben_sehr_im_Herzen_.ly
@@ -12,6 +12,7 @@
composer = "Daniel Friderici (1584-1638)"
tagline = ""
}
+
\paper {
top-margin = 5
}
@@ -35,26 +36,96 @@ inhalt = {
\new Voice = tenor { \global \clef "bass" \voiceOne \tenorMelodie }
\new Voice = bass { \global \clef "bass" \voiceTwo \bassMelodie }
>>
- \context Lyrics = "tenorTextI" \lyricsto "tenor" \textITenor
- \context Lyrics = "tenorTextII" \lyricsto "tenor" \textIITenor
- \new Lyrics \lyricsto bass { \textIBass }
+ \context Lyrics = "tenorTextI" \lyricsto "tenor" \textITenor
+ \context Lyrics = "tenorTextII" \lyricsto "tenor" \textIITenor
+ \new Lyrics \lyricsto bass { \textIBass }
\new Lyrics \lyricsto bass { \textIIBass }
>>
}
-\score {
- \inhalt
- \layout {
- indent = #0
+\book {
+ \score {
+ \inhalt
+ \layout {
+ indent = #0
+ }
+ }
+
+ \score {
+ \unfoldRepeats { \inhalt }
+ \midi {
+ \context {
+ \Score
+ tempoWholesPerMinute = #(ly:make-moment 72 2)
+ }
+ }
}
}
-\score {
- \unfoldRepeats { \inhalt }
- \midi {
- \context {
- \Score
- tempoWholesPerMinute = #(ly:make-moment 72 2)
+\book {
+ \bookOutputSuffix "Sopran"
+ \score {
+ \unfoldRepeats {
+ \new Staff {
+ \new Voice = sopran { \global \sopranMelodie }
+ }
+ }
+ \midi {
+ \context {
+ \Score
+ tempoWholesPerMinute = #(ly:make-moment 72 2)
+ }
+ }
+ }
+}
+
+\book {
+ \bookOutputSuffix "Alt"
+ \score {
+ \unfoldRepeats {
+ \new Staff {
+ \new Voice = alt { \global \altMelodie }
+ }
+ }
+ \midi {
+ \context {
+ \Score
+ tempoWholesPerMinute = #(ly:make-moment 72 2)
+ }
+ }
+ }
+}
+
+\book {
+ \bookOutputSuffix "Tenor"
+ \score {
+ \unfoldRepeats {
+ \new Staff {
+ \new Voice = tenor { \global \tenorMelodie }
+ }
+ }
+ \midi {
+ \context {
+ \Score
+ tempoWholesPerMinute = #(ly:make-moment 72 2)
+ }
+ }
+ }
+}
+
+\book {
+ \bookOutputSuffix "Bass"
+ \score {
+ \unfoldRepeats {
+ \new Staff {
+ \new Voice = bass { \global \bassMelodie }
+ }
+ }
+ \midi {
+ \context {
+ \Score
+ tempoWholesPerMinute = #(ly:make-moment 72 2)
+ }
}
}
}