On Feb 9, 2013, at 6:53 PM, ivan.k.kuznet...@gmail.com wrote: > (1) the example below is pretty much what I want expect > that there is space where the time signature would normally go > (I erase the time signature with > "\override TimeSignature #'transparent = ##t" but the space > is still there). > > How can I get rid of this space?
I don't know why this does not work: %%%%%%%%%%%%%% \version "2.16.0" \score { % score \new Staff \with { \override TimeSignature #'break-visibility = #'#(#f #f #f) } % <--- ADDED { \time 4/4 \key c \major \clef "treble" \cadenzaOn a1 b1 c'1 d'1 e'1 f'1 g'1 a'1 b'1 c''1 d''1 e''1 f''1 g''1 a''1 b''1 \cadenzaOff } \layout { \context { \Score % } } } % score %%%%%%%%%%%%%% ...as described here: http://lilypond.org/doc/v2.16/Documentation/notation/visibility-of-objects#using-break_002dvisibility But the following works. HTH, -Paul %%%%%%%%%%%%%% \version "2.16.0" \score { % score \new Staff \with { \remove "Time_signature_engraver" } % <--- ADDED { \time 4/4 \key c \major \clef "treble" \cadenzaOn a1 b1 c'1 d'1 e'1 f'1 g'1 a'1 b'1 c''1 d''1 e''1 f''1 g''1 a''1 b''1 \cadenzaOff } \layout { \context { \Score % \override TimeSignature #'transparent = ##t } } } % score _______________________________________________ lilypond-user mailing list lilypond-user@gnu.org https://lists.gnu.org/mailman/listinfo/lilypond-user