\version "2.16.1" Flt = \relative c'' { \set Staff.instrumentName = \markup \fontsize #1.5 "Flöte " \clef treble \time 5/4 \tempo \markup {\fontsize #1.5 "ruhige" \fontsize #-1.5 \note #"4" #1 } r2. c2\p } Ob = \relative c' { \set Staff.instrumentName = \markup \fontsize #1.5 "Oboe " \clef treble \time 5/4 R1*5/4 } Fag = \relative c' { \set Staff.instrumentName = \markup \fontsize #1.5 "Fagott " \clef treble \time 5/4 R1*5/4 } Sopr = \relative c' { \set Staff.instrumentName = "Sopran" \clef treble \time 5/4 \tempo \markup {\fontsize #1.5 "ruhige" \fontsize #-1.5 \note #"4" #1 } %\override TextSpanner #'(bound-details left text) = \markup \bold \italic "riten." \overrideProperty #"Score.NonMusicalPaperColumn" #'line-break-system-details #'( (alignment-distances . (12 12 16 18 12 12 12 12 ))) \dynamicUp r2. c2\mf } SoprText = \lyricmode {Mag -- ni } VOne = \relative c' { \set Staff.instrumentName = \markup \fontsize #1.5 "Violine 1 " \clef treble \time 5/4 \tempo \markup {\fontsize #1.5 "ruhige" \fontsize #-1.5 \note #"4" #1 } c2\mf es4 f bes } VTwo = \relative c' { \set Staff.instrumentName = \markup \fontsize #1.5 "Violine 2 " \clef treble c2\p es4 f2 } Vla = \relative c { \set Staff.instrumentName = \markup \fontsize #1.5 "Viola " \clef alto \time 5/4 c2\p es2. } Vc = \relative c' { \set Staff.instrumentName = \markup \fontsize #1.5 "Violoncello" \clef bass \time 5/4 c2.\p~c2 } Kb = \relative c { \set Staff.instrumentName = \markup \fontsize #1.5 "Kontrabass" \clef bass \time 5/4 R1*5/4 } music = { << \new StaffGroup = "Holz" \with { fontSize = #-2.5 \override StaffSymbol #'staff-space = #(magstep -2.5) \override StaffSymbol #'thickness = #(magstep -2.5) } << \tag #'score \tag #'Flt \new Staff { << \Flt >> } \tag #'score \tag #'Ob \new Staff { << \Ob >> } \tag #'score \tag #'Fag \new Staff { << \Fag >>} >> \new Staff << \new Voice = "Sopr" { \Sopr } >> \new Lyrics \lyricsto "Sopr" \SoprText \new StaffGroup = "Streicher" \with { fontSize = #-2.5 \override StaffSymbol #'staff-space = #(magstep -2.5) \override StaffSymbol #'thickness = #(magstep -2.5) } << \tag #'score \tag #'VOne \new Staff { << \VOne >> } \tag #'score \tag #'VTwo \new Staff { << \VTwo >> } \tag #'score \tag #'Vla \new Staff { << \Vla >>} \tag #'score \tag #'Vc \new Staff { << \Vc >> } \tag #'score \tag #'Kb \new Staff { << \Kb >> } >> >> } \score { \music \midi { \context { \Score tempoWholesPerMinute = #(ly:make-moment 120 4) } } \layout { \context { \Lyrics \override VerticalAxisGroup #'nonstaff-relatedstaff-spacing = #'((basic-distance . 5.5) (padding . 1.5) % default: 0.5 (stretchability . 1)) } \context { \override LyricHyphen #'minimum-distance = #1.0 } } }