I'm working with a score with a ragged-last
system, and I'd like to fit a markup column next to the score, thus filling the gap between the final barline and the margin. What are some ways of accomplishing this?
Example:
\paper {
ragged-last = ##t
}
\score {
\new Staff <<
\new Voice = "example" {
c4 d e f | g a b c
\bar "|."
}
>>
}
\markup {
\column {
\line { "Some text I want" }
\line { "next to the score" }
}
}
One way to do this would be to override BarLine stencil so that it will contain your markup: