Re: Reduce the gap between time signature and the first note

2021-11-10 Thread Xavier Scheuer
On Wed, 10 Nov 2021 at 00:33, Paolo Prete wrote: > > Hello Xavier, > > I tried your tip but it seems to not produce any difference. See (tested on 2.19.48): > > (snip) > Hello, Well, you need to use it in combination with your space-alist = #'((first-note fixed-space . 0)) Cheers, Xavier -- X

Re: Reduce the gap between time signature and the first note

2021-11-09 Thread Paolo Prete
Hello Xavier, I tried your tip but it seems to not produce any difference. See (tested on 2.19.48): % { r1\break \time 4/4 c'' \break \once \override Score.TimeSignature.extra-spacing-width = #'(0.0 . 0.0) \time 4/4 c'' \break r } % Cheers, P On Tue, Nov 9, 2021 at 9:34 AM Xavier S

Re: Reduce the gap between time signature and the first note

2021-11-09 Thread Paolo Prete
Thank you Valentin, it works perfectly. On Mon, Nov 8, 2021 at 11:09 PM Valentin Petzel wrote: > Hello Paolo, > > You could try to override the actual X-extent of the TimeSig, like > \override Staff.TimeSignature.X-extent = #'(0 . 1.1) > > Cheers, > Valentin > > Am Sonntag, 7. November 2021, 18

Re: Reduce the gap between time signature and the first note

2021-11-09 Thread Xavier Scheuer
On Sun, 7 Nov 2021 at 18:56, Paolo Prete wrote: > > Hello, > > I'm trying to have a minimum space between a TimeSignature and the first note after it (and, consequently, all the following notes). I tried: > > \once\override Score.TimeSignature.space-alist = > #'((first-note fixed-space . 0

Re: Reduce the gap between time signature and the first note

2021-11-08 Thread Valentin Petzel
Hello Paolo, You could try to override the actual X-extent of the TimeSig, like \override Staff.TimeSignature.X-extent = #'(0 . 1.1) Cheers, Valentin Am Sonntag, 7. November 2021, 18:49:20 CET schrieb Paolo Prete: > Hello, > > I'm trying to have a minimum space between a TimeSignature and the f

Reduce the gap between time signature and the first note

2021-11-07 Thread Paolo Prete
Hello, I'm trying to have a minimum space between a TimeSignature and the first note after it (and, consequently, all the following notes). I tried: \once\override Score.TimeSignature.space-alist = #'((first-note fixed-space . 0)) ...but there's still a gap which I can't eliminate. How c