lilypond-user
[Top][All Lists]
Advanced

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

Re: Box around MeasureCounter


From: Aaron Hill
Subject: Re: Box around MeasureCounter
Date: Mon, 22 Nov 2021 12:16:17 -0800
User-agent: Roundcube Webmail/1.4.9

On 2021-11-22 11:24 am, Rajesh Baskar wrote:
I had another question. The MeasureCounter boxify function does not
work if we change the staff to Rhythmic staff.

You need to scope the grob to the appropriate context. \boxifying something within Staff only affects Staff. If you need it to work for RhythmicStaff, just be more specific:

%%%%
\new Voice {
  \boxify RhythmicStaff.MeasureCounter
  ...
}

%% ...or... %%

\new RhythmicStaff
\with { \boxify MeasureCounter }
{ ... }

%% ...or... %%

\layout {
  \context {
    \RhythmicStaff
    \boxify MeasureCounter
  }
}
%%%%


-- Aaron Hill



reply via email to

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