summaryrefslogtreecommitdiff
path: root/Ich_bin_die_Auferstehung/Ich_bin_die_Auferstehung.ly
diff options
context:
space:
mode:
authorErich Eckner <git@eckner.net>2016-11-18 13:16:06 +0100
committerErich Eckner <git@eckner.net>2016-11-20 23:13:40 +0100
commit77cd79e0b62df2c20a271c32c7e77415e781b46b (patch)
tree01ac5c845419d2819d462aa783fe7dea21b12a16 /Ich_bin_die_Auferstehung/Ich_bin_die_Auferstehung.ly
parent5a1927be6ee2e4076c3a00bd27e68f7e3d35d5ae (diff)
downloadMusik-77cd79e0b62df2c20a271c32c7e77415e781b46b.tar.xz
Ich_bin_die_Auferstehung neu
Diffstat (limited to 'Ich_bin_die_Auferstehung/Ich_bin_die_Auferstehung.ly')
-rw-r--r--Ich_bin_die_Auferstehung/Ich_bin_die_Auferstehung.ly49
1 files changed, 49 insertions, 0 deletions
diff --git a/Ich_bin_die_Auferstehung/Ich_bin_die_Auferstehung.ly b/Ich_bin_die_Auferstehung/Ich_bin_die_Auferstehung.ly
new file mode 100644
index 0000000..549716c
--- /dev/null
+++ b/Ich_bin_die_Auferstehung/Ich_bin_die_Auferstehung.ly
@@ -0,0 +1,49 @@
+\include "deutsch.ly"
+\include "stimmen.ly"
+\include "texte.ly"
+
+#(set! paper-alist (cons '("kindle" . (cons (* 210 mm) (* 130 mm))) paper-alist))
+#(set-default-paper-size "kindle")
+
+\pointAndClickOff
+
+\header {
+ title = "Ich bin die Auferstehung und das Leben"
+ composer = "Gallus Dreßler 1533 - ca. 1590"
+ tagline = ""
+}
+
+\new StaffGroup = choirStaff <<
+ \new Voice = sopran << \global \sopranMelodie >>
+ \new Lyrics \lyricsto sopran { \textSopran }
+ \new Voice = alt << \global \altMelodie >>
+ \new Lyrics \lyricsto alt { \textAlt }
+ \new Voice = tenor << \global \clef "G_8" \tenorMelodie >>
+ \new Lyrics \lyricsto tenor { \textTenor }
+ \new Voice = bass << \global \clef "bass" \bassMelodie >>
+ \new Lyrics \lyricsto bass { \textBass }
+>>
+
+\layout {
+ \context {
+ \Score
+ %% no bar lines in staves or lyrics
+ \hide BarLine
+ }
+ %% the next two instructions keep the lyrics between the bar lines
+ \context {
+ \Lyrics
+ \consists "Bar_engraver"
+ \consists "Separating_line_group_engraver"
+ }
+ \context {
+ \Voice
+ %% Comment in the below "\remove" command to allow line
+ %% breaking also at those bar lines where a note overlaps
+ %% into the next measure. The command is commented out in this
+ %% short example score, but especially for large scores, you
+ %% will typically yield better line breaking and thus improve
+ %% overall spacing if you comment in the following command.
+ \remove "Forbid_line_break_engraver"
+ }
+}