On 02/07/2025 21:10, Knute Snortum wrote:
Yep, that works, thanks! Just for anyone trying this, I had to put
the same grace note in six places in my actual score because I have
separate variables for four voices, dynamics, and pedal.
--
Knute Snortum
A less hacky solution would be to temporarily override the order bar
lines and clefs are printed. (if your real score has other items being
printed here, you may need to expand the list to control their position.)
\version "2.24.4"
\relative {
\repeat volta 2 {
\clef bass
c4 c c c |
\textMark A
c4
}
\once \override Score.BreakAlignment.break-align-orders =
#(make-vector 3 '(staff-bar clef))
\repeat volta 2 {
\clef treble c''4 c c |
\textMark B
\clef bass c,,4 c c c |
}
}
--
Timothy Lanfear, Bristol, UK.