On Sun, Feb 2, 2025 at 12:53 PM Zbyněk Burget via LilyPond user discussion <
lilypond-user@gnu.org> wrote:

> Hi,
> I need something like this:
> I have a \break somewhere in my code. I need a bigger gap between the
> staves at that point. It would
> be ideal if I could shorten the staff before the \break using something
> like
> ragged-right = ##t
>

If you are willing to make the music before and after the break different
scores, you could use ragged-last = ##t.

%%%
\version "2.24.4"

\score {
  \layout {
    ragged-last = ##t
  }
  {
    \repeat unfold 32 { c''1 }
  }
}

\score {
  \layout {
    ragged-last = ##f
    indent = 0
  }
  {
    \omit Score.TimeSignature
    \repeat unfold 32 { c''1 }
  }
}
%%%

--
Knute Snortum

Reply via email to