summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorErich Eckner <git@eckner.net>2016-09-15 15:06:27 +0200
committerErich Eckner <git@eckner.net>2016-09-15 15:06:27 +0200
commit739e7b3b7f594edda210fb033977d8dc3b3f8760 (patch)
treeb780242f08fe6ab057228d7914a9eeaeb22a7631
parente4a7f7ec614d7b8ec0b51c8b5d5012d33e8d84ee (diff)
downloadMusik-739e7b3b7f594edda210fb033977d8dc3b3f8760.tar.xz
Wir_lieben_sehr_im_Herzen_ Einzelstimmausgabe als midi neu
-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)
+ }
}
}
}