lilypond-user
[Top][All Lists]
Advanced

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

Re: Ragged bottom for end of a score block?


From: Jean Abou Samra
Subject: Re: Ragged bottom for end of a score block?
Date: Sun, 09 Apr 2023 18:48:02 +0200
User-agent: Evolution 3.46.4 (3.46.4-1.fc37)

Le dimanche 09 avril 2023 à 21:59 +1000, Alasdair McAndrew a écrit :

I have a piece with a number of movements, and each movement has its own score block.  If I set "ragged-bottom==##t" in the paper block, then every page has this property.  Or if I use "ragged-last-bottom=##t" it affects only the very last page of all.
But what I want is for the last page of each movement to have a ragged bottom; 

Can this be done?

Try putting each score into a bookpart:

\version "2.24.1"

filler = \repeat unfold 20 { c' \break }

\bookpart {
  \score {
    \filler
  }
}

\bookpart {
  \score {
    \filler
  }
}

ragged-(last-)bottom can't be configured per score, since adjacent scores can share pages and thus are not independent with respect to page breaking. By making separate bookparts, you create independent page breaking units (there is always a page break between two bookparts), and they can have different page breaking settings.

You won't even need to configure ragged-bottom or ragged-last-bottom, since the default does what you want already.

Attachment: signature.asc
Description: This is a digitally signed message part


reply via email to

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