summaryrefslogtreecommitdiff
path: root/Allein_Gott_in_der_Hoeh_sei_Ehr/satz.ly
diff options
context:
space:
mode:
Diffstat (limited to 'Allein_Gott_in_der_Hoeh_sei_Ehr/satz.ly')
-rw-r--r--Allein_Gott_in_der_Hoeh_sei_Ehr/satz.ly47
1 files changed, 47 insertions, 0 deletions
diff --git a/Allein_Gott_in_der_Hoeh_sei_Ehr/satz.ly b/Allein_Gott_in_der_Hoeh_sei_Ehr/satz.ly
new file mode 100644
index 0000000..60ae8ff
--- /dev/null
+++ b/Allein_Gott_in_der_Hoeh_sei_Ehr/satz.ly
@@ -0,0 +1,47 @@
+\score {
+ \header {
+ title = "Allein Gott in der Höh sei Ehr"
+ composer = "Prätorius, Mich."
+ }
+ \new StaffGroup <<
+ \new Staff <<
+ \new Voice = "sopran" << \global \sopranMelodie >>
+ ifdef(`STR_1', \new Lyrics \lyricsto "sopran" \sopranTextI )
+ ifdef(`STR_2', \new Lyrics \lyricsto "sopran" \sopranTextII )
+ >>
+ \new Staff <<
+ \new Voice = "alt" << \global \altMelodie >>
+ ifdef(`STR_1', \new Lyrics \lyricsto "alt" \altTextI )
+ ifdef(`STR_2', \new Lyrics \lyricsto "alt" \altTextII )
+ >>
+ \new Staff <<
+ \new Voice = "maenner" << \clef "bass" \global \maennerMelodie >>
+ ifdef(`STR_1', \new Lyrics \lyricsto "maenner" \maennerTextI )
+ ifdef(`STR_2', \new Lyrics \lyricsto "maenner" \maennerTextII )
+ >>
+ >>
+ \layout {
+ indent = #0
+ \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"
+ }
+ }
+}