On Mon 19 Sep 2022 at 16:28:35 (-0700), Kenneth Wolcott wrote:
> I have implemented the "Fine" and "D.C. al Fine" as rehearsal mark markups.
>
> Now I have a problem where the "D.C. al Fine" consumes much more
> space than the bar containing the dotted-half note, it even falls off
> the right side of the page.
>
> How does one expand the bar enough to contain the markup instead of
> modifying the markup to fit the bar?
Right justification is usual:
global = {
\key c \major
\time 4/4
s1 * 4
\rightjust \mark \markup{ \smallCaps "Fine"}
\bar "|."
s1 * 10
\bar "||"
s1 * 10
\bar "||"
s1 * 9
\bar "||"
\rightjust \mark \markup{ "D.C. al Fine"}
}
Cheers,
David.