Thank you for your reply, Xavier,
I don't know enough to know how to override Score.coda.MarkFormatter. I
might be able to figure part of it from the code I was given to change
the D.C al Coda string. I don't know where to put the override I want.
Here is a MWE of what I currently know. I want to change the coda sign
after measure 2.
\version "2.25.21"
music = \fixed c' {
f1
\repeat segno 2 {
g1
\alternative {
\volta 1 { \repeat unfold 4 { a2 } }
\volta 2 \volta #'() {
\section
\sectionLabel "Coda"
\once \set Score.dalSegnoTextFormatter =
#(lambda (context repeat-count markups)
#{ \markup{D.C. al Coda} #})
}
}
}
b1
\fine
}
\score { \music }
On 11/7/24 12:24 PM, Xavier Scheuer wrote:
On Thu, 7 Nov 2024 at 17:45, Paul Scott <waterhorsemu...@aol.com> wrote:
>
> 2.25.21
>
> I know how to change the D.C. al Coda text with the \repeat segno
structure.
>
> How do I change the coda sign that tells where to jump to the coda to
> "To Coda [codasign]?"
Hello,
Not sure I understand exactly what you want.
Try to override Score.codaMarkFormatter ?
Kind regards,
Xavier