Excellent.
On 4/22/2025 1:41 AM, K. Blum wrote:
Hi Walt,
Am 22.04.2025 um 04:51 schrieb lilypond-user-requ...@gnu.org:
Is there any easy way to colorize the number list sent to the
alternative volta? Or otherwise change the format? In a longer piece of
music I'd like the volta numbers to visually stand out a bit more.
Here is a simple mocked up example. I'd like the numbers to be some
other color or otherwise highlighted. Or possibly the bracket lines as well.
here is what I use:
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\version "2.25.22"
<<
\new ChordNames {
c1 | d | e | f |
}
\new Staff
\relative c' {
c4 c c c
\override Score.VoltaBracket.color = #red
\once \override Staff.BarLine.color = #blue
\repeat volta 2 {
d4 d d d
}
\alternative {
\volta 1 {
e e e e |
\once \override Staff.BarLine.color = #blue
}
\volta 2 {
f f f f |
}
}
}
>>
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
Cheers,
Klaus