There is at least one way with which one can avoid orphan headers!!

SOLUTION: The following worked (only idea represented):

\score {
  ...
  \paper {
    interscorelinefill = 0  % Add still some score lines to the page.
  }
}
\score{
  ...
  \paper {                  % HERE WE AVOID AN ORPHAN HEADER:
    interscorelinefill = 1  % End the page after the last score line.
  }
}
\score{
  ...
  \paper {                  % RESTORE SETTINGS:
    interscorelinefill = 0  % Add score lines to the current page.
  }
}
\score {
  ...    % Set again interscorelinefill = 1, if there are orphan headers.
}

Good news is that orphan headers _can_ be avoided. In future, however,
they _should_ be avoided by default.

--
      Heikki Junes


_______________________________________________
Lilypond-devel mailing list
[EMAIL PROTECTED]
http://mail.gnu.org/mailman/listinfo/lilypond-devel

Reply via email to