Re: Tweaking an ottava bracket after a break

2021-11-07 Thread Knute Snortum
On Sat, Nov 6, 2021 at 2:08 PM Kieren MacMillan wrote: > > p.s. > > > Does \afterBreak not work with OttavaBracket.padding? > > um… \alterBroken (as in the snippet). > Sorry! — K > > > \relative { > > \alterBroken #'padding #'(1 7) Staff.OttavaBracket > > \ottava 1 c1 \break > > c2 2 > > }

Re: Tweaking an ottava bracket after a break

2021-11-06 Thread Carl Sorensen
On 11/6/21, 3:24 PM, "lilypond-user on behalf of Lukas-Fabian Moser" wrote: > \relative { >\alterBroken #'padding #'(1 7) Staff.OttavaBracket >\ottava 1 c1 \break > c2 2 > } I continue my lonely crusade against the hash-tick-combinations that I

Re: Tweaking an ottava bracket after a break

2021-11-06 Thread Kieren MacMillan
Hi Lukas, > I continue my lonely crusade against the hash-tick-combinations I generally remove them — I’m on the crusade with you! — tho’ on this “fast-cut-and-paste job”, I didn’t. =( That being said, there are certain circumstances in which I prefer keeping the hashes, as they (IMO) help

Re: Tweaking an ottava bracket after a break

2021-11-06 Thread Aaron Hill
On 2021-11-06 2:45 pm, Lukas-Fabian Moser wrote: Since #'(1 7) is a list of numbers, you could write it this way: \relative {   \alterBroken padding 1,7 Staff.OttavaBracket   \ottava 1 c1 \break   c2 2 } Right, thanks! I had a feeling there was a way to do this using dak's

Re: Tweaking an ottava bracket after a break

2021-11-06 Thread Lukas-Fabian Moser
Since #'(1 7) is a list of numbers, you could write it this way: \relative {   \alterBroken padding 1,7 Staff.OttavaBracket   \ottava 1 c1 \break   c2 2 } Right, thanks! I had a feeling there was a way to do this using dak's syntax enhancements but couldn't remember what it

Re: Tweaking an ottava bracket after a break

2021-11-06 Thread Aaron Hill
On 2021-11-06 2:23 pm, Lukas-Fabian Moser wrote: \relative { \alterBroken #'padding #'(1 7) Staff.OttavaBracket \ottava 1 c1 \break c2 2 } I continue my lonely crusade against the hash-tick-combinations that I found so daunting when I learned LilyPond and which are needed much less

Re: Tweaking an ottava bracket after a break

2021-11-06 Thread Lukas-Fabian Moser
\relative { \alterBroken #'padding #'(1 7) Staff.OttavaBracket \ottava 1 c1 \break c2 2 } I continue my lonely crusade against the hash-tick-combinations that I found so daunting when I learned LilyPond and which are needed much less often today: \relative {   \alterBroken

Re: Tweaking an ottava bracket after a break

2021-11-06 Thread Jean Abou Samra
Le 06/11/2021 à 22:01, Knute Snortum a écrit : Hello again, I have a situation where I need to adjust the padding of an ottava bracket after a line break. That is, I want to affect the bracket on the second line, but not the first. I know you can do something like this with the \shape

Re: Tweaking an ottava bracket after a break

2021-11-06 Thread Kieren MacMillan
p.s. > Does \afterBreak not work with OttavaBracket.padding? um… \alterBroken (as in the snippet). Sorry! — K > \relative { > \alterBroken #'padding #'(1 7) Staff.OttavaBracket > \ottava 1 c1 \break > c2 2 > }

Re: Tweaking an ottava bracket after a break

2021-11-06 Thread Kieren MacMillan
Hi Knute, > I have a situation where I need to adjust the padding of an ottava > bracket after a line break. That is, I want to affect the bracket on > the second line, but not the first. Does \afterBreak not work with OttavaBracket.padding? \relative { \alterBroken #'padding #'(1 7)

Tweaking an ottava bracket after a break

2021-11-06 Thread Knute Snortum
Hello again, I have a situation where I need to adjust the padding of an ottava bracket after a line break. That is, I want to affect the bracket on the second line, but not the first. I know you can do something like this with the \shape function, but what about brackets? I tried this solution