lilypond-user
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: Coda/Segno sign color override not working: LiliyPond 2.24.0


From: Michael Werner
Subject: Re: Coda/Segno sign color override not working: LiliyPond 2.24.0
Date: Fri, 24 Mar 2023 11:43:47 -0400

Hi Laurie,

On Fri, Mar 24, 2023 at 10:56 AM Laurie Savage <savage.laurie@gmail.com> wrote:
Hi,

I put this in my layout block

\context {
      \Score
      \override CodaMark.color = #red
      \override SegnoMark.color = #red
      \override SectionLabel.color = #red
      \override SectionLabel.font-size = #3
      \override RehearsalMark.font-size = #3
      \override RehearsalMark.color = #red
    }

The result is large red rehearsal marks and large red section labels but black segno and coda signs.

All I can figure is that something somewhere is a bit out of place. I double checked here, making sure to use the same version you mention (2.24.0) and it's working as expected. Specifically:

\version "2.24.0"
\language "english"

\layout {
  \context {
    \Score
    \override CodaMark.color = #red
    \override SegnoMark.color = #red
    \override SectionLabel.color = #red
    \override SectionLabel.font-size = #3
    \override RehearsalMark.font-size = #3
    \override RehearsalMark.color = #red
  }
}

\new Score {
  \new Staff {
    \new Voice {
      \fixed c' {
        \mark \default
        f1 f1
        \sectionLabel "A1"
        f1 f1
        \repeat segno 2 {
          g1 g1
          \alternative {
            \volta 1 { \repeat unfold 4 { a2 } }
            \volta 2 \volta #'() {
              \section
              \sectionLabel "Coda"
            }
          }
        }
        b1
        \fine
      }
    }
  }
}

is producing:

image.png

Could you post a small section of code showing how you're using everything?

Michael

reply via email to

[Prev in Thread] Current Thread [Next in Thread]