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.


_______________________________________________
lilypond-user mailing list
lilypond-user@gnu.org
http://lists.gnu.org/mailman/listinfo/lilypond-user

Reply via email to