lilypond-user
[Top][All Lists]
Advanced

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

Re: remove Time_signature_engraver only partially


From: Kieren MacMillan
Subject: Re: remove Time_signature_engraver only partially
Date: Mon, 31 Dec 2007 09:01:25 -0500

Hi Ole,

In the following snippet I want to remove the Time_signature_engraver only in the second and the third bar (no timesign 6/4 and 4/4 again).
How can I achive that?

You can't remove the engraver from a context for only a few bars.

However, you can always turn the time signature engraver OFF for a few bars

    \override TimeSignature #'stencil = ##f

and then

    \override TimeSignature #'stencil = ##t
    (or \revert TimeSignature #'stencil)

Be sure to apply the override to the correct context -- i.e., if you want this for the whole score (as opposed to just one staff) then you might have to use

    \override Score.TimeSignature #'stencil = ##f

etc.

Hope this helps!
Kieren.




reply via email to

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