When I copied your layout block into my score (2.25.12) I get this error

error: syntax error, unexpected SYMBOL, expecting '='

CodaMark

color = "tomato"

Laurie Savage


On Fri, 1 Mar 2024 at 23:51, Kieren MacMillan <[email protected]>
wrote:

> Hi all,
>
> > I put them in the "global" section of my creation:
> >
> > global = {
> >  \time 2/2
> >  \tempo 4=200
> >  \compressEmptyMeasures\override MultiMeasureRest.expand-limit = #2
> >  \override Score.CodaMark.color = "tomato"
> >  \override Score.SegnoMark.color = "tomato"
> >  \override Score.SectionLabel.color = "tomato"
> >  %\override Score.RehearsalMark.color = "tomato"
> >  \override Score.JumpScript.color = "tomato"
> >  \set Score.rehearsalMarkFormatter = #format-mark-box-alphabet
> > }
>
> If this is a thing you do regularly, you might want to build an include
> file (e.g., Score_init.ily) and do this:
>
> \layout {
>   \context {
>     \Score
>     \compressEmptyMeasures
>     MultiMeasureRest.expand-limit = #2
>     CodaMark.color = "tomato"
>     SegnoMark.color = "tomato"
>     SectionLabel.color = "tomato"
>     % RehearsalMark.color = "tomato"
>     JumpScript.color = "tomato"
>     rehearsalMarkFormatter = #format-mark-box-alphabet
>   }
> }
>
> and then just
>
> \include "Score_init.ily"
>
> in your main files.
>
> Hope this helps!
> Kieren.
> ______________________________________________
>
> My work day may look different than your work day. Please do not feel
> obligated to read or respond to this email outside of your normal working
> hours.
>
>

Reply via email to