Adjusting horizontal space from notehead to bar line

2021-08-23 Thread Matthew Fong
Hello fellow Lilyponders, I'm looking around the documentation on NoteHead to Barline spacing, and I'm not finding much? Any pointers will be helpful. My goal is to add a bit more space from the first note to the last Barline, for every measure. It seems a bit too close even with the staff size

Re: Adjusting horizontal space from notehead to bar line

2021-08-23 Thread Hans Aikema
> On 23 Aug 2021, at 17:42, Matthew Fong wrote: > >  > Hello fellow Lilyponders, > > I'm looking around the documentation on NoteHead to Barline spacing, and I'm > not finding much? Any pointers will be helpful. > > My goal is to add a bit more space from the first note to the last

Re: Gracenote bug?

2021-08-23 Thread Aaron Hill
On 2021-08-23 11:30 am, Kees van den Doel wrote: Trying to shift a note away from the barline which it's touching by adding a \grace s16, but I ran into what appears a bug? [ . . . ] One of the longest-standing bugs, in fact. See [1]. [1]: https://gitlab.com/lilypond/lilypond/-/issues/34

Re: Gracenote bug?

2021-08-23 Thread David Kastrup
Kees van den Doel writes: [Issue 34] > A 14 year old bug must be some sort of record. It must be quite more than 14 years I think. -- David Kastrup

Re: Adjusting horizontal space from notehead to bar line

2021-08-23 Thread Kees van den Doel
Forgot to reply-all again, sorry. Picture of my problem attached as well.Seems to be caused by the volta repeat bar as the single barlines are OK. [image: Image1.png] On Mon, Aug 23, 2021 at 10:28 AM Kees van den Doel wrote: > I have a similar problem but only in one place and it's worse: the

Re: Gracenote bug?

2021-08-23 Thread Kees van den Doel
A 14 year old bug must be some sort of record. Workaround seems to put a grace note in all voices, but use 's' to make unwanted ones invisible. Cheers, Kees On Mon, Aug 23, 2021 at 11:41 AM Aaron Hill wrote: > On 2021-08-23 11:30 am, Kees van den Doel wrote: > > Trying to shift a note away

Re: Gracenote bug?

2021-08-23 Thread Thomas Morley
Am Mo., 23. Aug. 2021 um 20:32 Uhr schrieb Kees van den Doel : > > Trying to shift a note away from the barline which it's touching by adding a > \grace s16, but I ran into what appears a bug? > > \version "2.22.1" > > mus = \relative { > \repeat volta 2 { > c'1 > } > \alternative { >

Gracenote bug?

2021-08-23 Thread Kees van den Doel
Trying to shift a note away from the barline which it's touching by adding a \grace s16, but I ran into what appears a bug? \version "2.22.1" mus = \relative { \repeat volta 2 { c'1 } \alternative { { c1} { \grace c16 c1} } } musb = \relative { \repeat volta 2 { c'1 }

Re: Adjusting horizontal space from notehead to bar line

2021-08-23 Thread Matthew Fong
Hello Hans, LilyPonders, Thank you! I added the line to my Staff context, and everything worked as expected. \override BarLine.space-alist.next-note = #'(fixed-space . 1.2) I wanted to refine the solution and add space only *after* double-bar lines, but adding the following to my bars doesn't

Re: Adjusting horizontal space from notehead to bar line

2021-08-23 Thread Aaron Hill
On 2021-08-23 4:03 pm, Matthew Fong wrote: Hello Hans, LilyPonders, Thank you! I added the line to my Staff context, and everything worked as expected. \override BarLine.space-alist.next-note = #'(fixed-space . 1.2) I wanted to refine the solution and add space only *after* double-bar lines,

Re: Adjusting horizontal space from notehead to bar line

2021-08-23 Thread Matthew Fong
Dear Aaron, Brilliant! That was what was missing! Many thanks, mattfong On Mon, Aug 23, 2021 at 6:23 PM Aaron Hill wrote: > On 2021-08-23 4:03 pm, Matthew Fong wrote: > > Hello Hans, LilyPonders, > > > > Thank you! I added the line to my Staff context, and everything worked > > as > >