Hi,
Am 13.05.26 um 03:10 schrieb Defgecd:
Hello Lilypond people,
I am trying to prevent the extra space that normally would signify
the time signature change with a hidden time signature. Here is the
code for an example:
\version "2.26.0"
{
\time 4/4
c'1 \hide Staff.TimeSignature
\time 3/4 \break
c'2.
}
I haven't tried it but try using \omit instead of \hide.
Nevermind, it wasn't working because I had to do it to all parts, I
got it to work now, thank you so much for your help!
Two additional points:
- If you use a global override like \omit Timing.TimeSignature, you
don't have to repeat the setting in all parts.
- \omit and \hide are permanent; if you want to influence only one time
signature change, prepend them with \once. So \once\omit
Timing.TimeSignature.
Lukas