Thank you, Knute.

I see that the Visual Index is the Visual LP Grob Index. I had not seen that before. That probably answers many of my questions about universal settings.

Have a great week,

Paul

On 6/1/25 7:41 AM, Knute Snortum wrote:
On Sat, May 31, 2025 at 11:02 PM Paul Scott <waterhorsemu...@aol.com> 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

Reply via email to