Il giorno lun 22 feb 2016 alle 17:40, Patrick Karl <[email protected]> ha scritto:
I don't understand why the following snippet doesn't generate a 3-page pdf. It would seem that either page-count=3 or systems-per-page=8 would accomplish that, but I always get a two-page pdf with 12 systems/page with any combination of the above two settings.

\version "2.19.35"

\paper { ragged-last-bottom = ##t }

music = \relative c'' { \repeat unfold 24 { c1 c c c \break } }

\score {
    \new Staff \music
    \layout {
        page-count = 3
%        systems-per-page = 8
    }
}


page-count and systems-per-page are paper variables which *cannot* appear in the \layout block:
http://lilypond.org/doc/v2.19/Documentation/notation/the-layout-block

move them to the \paper block and it will work


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

Reply via email to