Updates:
Cc: [email protected]
Comment #4 on issue 2735 by [email protected]: Clarify use of page
breaking paper variables
http://code.google.com/p/lilypond/issues/detail?id=2735
Joe, I wonder if you could double-check your statement which
I quoted verbatim in comment 1 above. Having played around
with this a little it seems to me the opposite is true, viz,
"If you make blank-last-page-force large and use ly:page-turn-breaking,
then lilypond will be less likely to produce a score where the last
page is odd^h^h^h even-numbered."
In the example below the output is placed on 2 pages by default, i.e.
the last page is even-numbered, but with blank-last-page-force = 50
the output is stretched to three pages, with the last page odd-numbered.
\paper {
indent= 0
page-breaking = #ly:page-turn-breaking
% blank-last-page-force = 50
}
\score {
{
\repeat unfold 50 { a4 a a a }
\repeat unfold 50 { a4 a a a }
\repeat unfold 50 { a4 a a a }
\repeat unfold 50 { a4 a a a }
\repeat unfold 50 { a4 a a a }
R1 \allowPageTurn
\repeat unfold 50 { a4 a a a }
\repeat unfold 50 { a4 a a a }
}
}
Trevor