I have a collection of scores that I'd like to print in one book. Is there any way of getting the non-last-scores to use ragged-last-bottom=##t ?
Currently the only way I can think of doing this is by using lilypond-book: ---- \documentclass{article} \begin{document} \lilypondfile{peice1.ly} \lilypondfile{piece2.ly} \end{document} ---- but it seems silly to use LaTeX just to put two scores together and have consecutive page numbers. I guess that another option would be to use ghostscript or some pdf program to combine the independently-created pdfs and number them... but again, that seems like overkill. Cheers, - Graham \version "2.11.62" \paper { ragged-last-bottom = ##t } \layout { ragged-last-bottom = ##t } \book{ \score { { \repeat unfold 200 { c'1 } \bar "|." } \layout { ragged-last-bottom = ##t } } % ideally reset everything \pageBreak \score { { \repeat unfold 200 { d'1 } \bar "|." } \layout { ragged-last-bottom = ##t } } } _______________________________________________ lilypond-user mailing list lilypond-user@gnu.org http://lists.gnu.org/mailman/listinfo/lilypond-user