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