On Sat, May 31, 2025 at 11:02 PM Paul Scott <[email protected]> wrote:
> Answers to this may help me how to better understand the use of the
> Internals reference:
>
> How can I change the size of the segno and coda marks generated by the
> \repeat segno structure (NR 1,4,1)?
>
>From the Visual Grob Index, you can see that the grob names are SegnoMark
and CodaMark, then you just change the font-size:
%%%
\version "2.24.4"
music = \fixed c' {
\override Score.SegnoMark.font-size = 10
\override Score.CodaMark.font-size = 10
f1
\repeat segno 2 {
g1
\alternative {
\volta 1 { \repeat unfold 4 { a2 } }
\volta 2 \volta #'() {
\section
\sectionLabel "Coda"
}
}
}
b1
\fine
}
\score { \music }
%%%
--
Knute Snortum