Hi Hartmut,

2014-07-04 8:12 GMT+02:00 Hartmut Leister <hartmut.leis...@gmail.com>:


> I'm having a vertical spacing problem.
> For a simple score (see [1]) I want to increase the vertical space
> between stanza 2 and the next system (I've marked an occurence) just a
> little bit.
>

   system-system-spacing #'basic-distance = #19
is probably what you're looking for.
\version "2.16.2"
 
#(set-global-staff-size 16)

\paper {
   system-system-spacing #'basic-distance = #19
}

\score {
<<
	\relative c' {
            \repeat unfold 4 { c4 }
            \repeat unfold 4 { d }
            \repeat unfold 4 { e }
            \repeat unfold 4 { f }
            g4^"some extra space here"
            \repeat unfold 3 { g }
            \repeat unfold 4 { a }
            \repeat unfold 4 { b }
            \repeat unfold 4 { c }
            \repeat unfold 4 { b }
            \repeat unfold 4 { a }
            \repeat unfold 4 { g }
            \repeat unfold 4 { f }
            \repeat unfold 4 { e }
            \repeat unfold 4 { d }
            \repeat unfold 4 { c }
        }

	\addlyrics {
          \set stanza = "1."
		\repeat unfold 64 bla
	}
	\addlyrics {
          \set stanza = "2."
		\repeat unfold 64 blubb
	}
>>
  \layout {
	\context {
	  \Score
	  \remove "Bar_number_engraver"		
	}
	indent = #0							
  }
}
_______________________________________________
lilypond-user mailing list
lilypond-user@gnu.org
https://lists.gnu.org/mailman/listinfo/lilypond-user

Reply via email to