diff options
Diffstat (limited to 'hr/stch/fertig/edel/edel.ly')
-rw-r--r-- | hr/stch/fertig/edel/edel.ly | 80 |
1 files changed, 80 insertions, 0 deletions
diff --git a/hr/stch/fertig/edel/edel.ly b/hr/stch/fertig/edel/edel.ly new file mode 100644 index 0000000..09c89be --- /dev/null +++ b/hr/stch/fertig/edel/edel.ly @@ -0,0 +1,80 @@ +% vim: encoding=utf8 nu + +\version "2.12.1" +\include "stimmen.ly" +\include "texte.ly" + + \header { + title = "Von edler Art" + composer = "Johannes Brahms" + } + + #(set-global-staff-size 18) + + \paper { + %system-count = 4 + ragged-last-bottom = ##f + foot-separation = 7\mm + bottom-margin = 7\mm + top-margin = 7\mm + head-separation = 4\mm + print-page-number = ##f + %between-system-padding = 10\mm + after-title-space = 7\mm + page-top-space = 0\mm + line-width = 170\mm + } + + \midi { + %\tempo 4 = 72 + } + + \layout { + indent = #0 + \context { + \Staff + \override VerticalAxisGroup #'minimum-Y-extent = #'(-2 . 2) + } + \context { + \Voice + \override TextScript #'padding = #1.0 + } + } + + cpap = \markup {\italic {cresc. poco a poco}} + rit = \markup {\italic {rit.}} + + \score { + \new ChoirStaff << + \new Staff = sopran << + \new Voice = "meta" { \metaDynamics } + \new Voice = "Dyn" { \sopranDyn } + \new Voice = "soprane" { \global \sopranMelodie } + \lyricsto soprane \sopranText + \lyricsto soprane \oberTextZwei + \lyricsto soprane \oberTextDrei + >> + \new Staff = alt << + \new Voice = "meta" { \metaDynamics } + \new Voice = "alti" { \global \altMelodie } + \lyricsto alti \altText + \lyricsto alti \oberTextZwei + \lyricsto alti \oberTextDrei + >> + \new Staff = tenor << + \new Voice = "meta" { \metaDynamics } + \new Voice = "tenoere" { \global \tenorMelodie } + \lyricsto tenoere \tenorText + \lyricsto tenoere \oberTextZwei + \lyricsto tenoere \oberTextDrei + >> + \new Staff = bass << + \new Voice = "meta" { \metaDynamics } + \new Voice = "baesse" { \global \bassMelodie } + \lyricsto baesse \bassText + \lyricsto baesse \bassTextZwei + \lyricsto baesse \bassTextDrei + >> + >> + } + |