Updates:
        Status: Invalid

Comment #2 on issue 388 by [email protected]: lilypond-book \betweenlilypondsystem does not apply to first system break if no header
http://code.google.com/p/lilypond/issues/detail?id=388

Not a lilypond problem, \betweenLilyPondSystem IS inserted and executed after the first line. Rather, it's wrong latex code. In particular, the following LaTeX code does NOT do what the bug reporter wants to do:

asdf asdf asdf\linebreak\vspace{3em}
asdf asdf asdf\linebreak\vspace{3em}
asdf

\vspace inserts vertical space at the NEXT linebreak, not to the linebreak that happened just before the \linebreak... (\linebreak behaves differently to \\ in this respect!).

The solution is to either
1) swap \linebreak and \vspace, so that \vspace comes before the \linebreak
or
2) use \\[36pt] instead (which does not try to fill the line, too)

Cheers,
Reinhold


_______________________________________________
bug-lilypond mailing list
[email protected]
https://lists.gnu.org/mailman/listinfo/bug-lilypond

Reply via email to