summaryrefslogtreecommitdiff
path: root/hr/stch/fertig/locus/locus.ly
diff options
context:
space:
mode:
authorErich Eckner <git@eckner.net>2014-09-10 17:47:07 +0200
committerErich Eckner <git@eckner.net>2014-09-10 17:47:07 +0200
commit49d14358c33b7d0ba7e7c381f91943617c7723ea (patch)
treefd55f0d3900d53978587d2228553359f86e69bbe /hr/stch/fertig/locus/locus.ly
parent646f69a657326ca8dd733dfa579a90f89823d677 (diff)
downloadMusik-49d14358c33b7d0ba7e7c381f91943617c7723ea.tar.xz
Hauke eingefügt
Diffstat (limited to 'hr/stch/fertig/locus/locus.ly')
-rw-r--r--hr/stch/fertig/locus/locus.ly76
1 files changed, 76 insertions, 0 deletions
diff --git a/hr/stch/fertig/locus/locus.ly b/hr/stch/fertig/locus/locus.ly
new file mode 100644
index 0000000..68dda4c
--- /dev/null
+++ b/hr/stch/fertig/locus/locus.ly
@@ -0,0 +1,76 @@
+% vim: encoding=utf8 nu
+
+\version "2.12.1"
+\include "stimmen.ly"
+\include "texte.ly"
+
+ \header {
+ title = "Locus iste"
+ %subtitle = "(Traditional)"
+ composer = "Anton Bruckner, 1824-1896"
+ }
+
+#(set-global-staff-size 16)
+
+ \paper {
+ ragged-last-bottom = ##f
+ %system-count = 4
+ page-count = 2
+ line-width = 182\mm
+ %between-system-space = 1\mm
+ %after-title-space = 0\mm
+ foot-separation = 15\mm
+ top-margin = 20\mm
+ bottom-margin = 25\mm
+ }
+
+ \midi {
+ }
+
+ \layout {
+ indent = #0
+ \context {
+ % a little smaller so lyrics can be closer to the staff
+ \Staff
+ \override VerticalAxisGroup #'minimum-Y-extent = #'(-4 . 4)
+ }
+ \context {
+ \Voice
+ \consists Ambitus_engraver
+ }
+ }
+
+ \score {
+ %\simultaneous
+ \new ChoirStaff <<
+ \new Staff = Sopran <<
+ \new Voice = "meta"
+ {
+ \dynamicUp
+ s1*3 s1 %\>
+ s1*2 \break
+ s1 %\!
+ s1% \break
+ s1*5 \break
+ s1*7 \pageBreak
+ s1*4 s1*2 s1*3 \break
+ s1*4 s1*4 \break
+ s1*6 s1*5 \bar "|."
+ }
+ \new Voice = "soprane" { \global \sopMusic }
+ \lyricsto soprane \oberWords
+ >>
+ \new Staff = Alt <<
+ \new Voice = "alti" { \global \altMusic }
+ \lyricsto alti \oberWords
+ >>
+ \new Staff = Tenor <<
+ \new Voice = "tenoere" { \global \tenorMusic }
+ \lyricsto tenoere \tenorWords
+ >>
+ \new Staff = Bass <<
+ \new Voice = "baesse" { \global \bassMusic }
+ \lyricsto baesse \bassWords
+ >>
+ >>
+ }