lilypond-user
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: Fit to one/n pages


From: Jean Abou Samra
Subject: Re: Fit to one/n pages
Date: Mon, 9 Jan 2023 00:14:10 +0100
User-agent: Mozilla/5.0 (X11; Linux x86_64; rv:102.0) Gecko/20100101 Thunderbird/102.6.0

Le 08/01/2023 à 23:45, Mark Probert a écrit :
Jean,

Following on. If my understanding is correct, each \book has a single \page.


Did you mean \paper?


So if my score consists of multiple \bookparts and I adjust the \page block, that impacts all the \bookparts?


Yes, it means each bookpart has the specified number of pages.

\version "2.24.0"

\paper {
  page-count = 2
}

\bookpart {
  \repeat unfold 20 { c'1 }
}

\bookpart {
  \repeat unfold 20 { c'1 }
}



Is there a way to force an individual \bookpart to a given number of pages?


Just move \paper inside \bookpart.

\version "2.24.0"

\bookpart {
  \paper {
    page-count = 2
  }
  \repeat unfold 20 { c'1 }
}

\bookpart {
  \repeat unfold 20 { c'1 }
}


HTH,
Jean

Attachment: OpenPGP_signature
Description: OpenPGP digital signature


reply via email to

[Prev in Thread] Current Thread [Next in Thread]