Slur crossing through accidental

2014-06-12 Thread James Harkins
I am at a complete loss what to do about this slur. It collides with the b-flat's accidental in a way that makes it hard to see what the slur is supposed to be. \version 2.18.2 \language english \relative c { \clef bass \time 6/8 bf8 ( d' ) r8 bf,16 ( bf' ) d ( bf d bf ) } I tried

Re: Slur crossing through accidental

2014-06-12 Thread Karol Majewski
Hi, James How about: \override Slur.details.accidental-collision = #1000 ? I am at a complete loss what to do about this slur. It collides with the b-flat's accidental in a way that makes it hard to see what the slur is supposed to be. \version 2.18.2 \language english \relative c {

Re: Slur crossing through accidental

2014-06-12 Thread James Harkins
On Thursday, June 12, 2014 11:16:27 PM HKT, Karol Majewski wrote: Hi, James How about: \override Slur.details.accidental-collision = #1000 ? No difference here: \version 2.18.2 \language english \relative c { \clef bass \time 6/8 bf8 ( d' ) r8 \override Accidental.avoid-slur =

Odp: Slur crossing through accidental

2014-06-12 Thread Karol Majewski
And of course you have to increase region size. So it should be: \override Slur.details.region-size = #5 \override Slur.details.accidental-collision = #1000 --Karol ___ lilypond-user mailing list lilypond-user@gnu.org

Re: Slur crossing through accidental

2014-06-12 Thread Malte Meyn
Another idea could be to change the position of the accidental: \version 2.18.2 \language english \relative c { \clef bass \time 6/8 bf8 ( d' ) r8 bf,16 ( \once \override Accidental.extra-offset = #'(-1.7 . 0) bf' ) d ( bf d bf ) } On 12.06.2014 17:13, James Harkins wrote: I am at a

Re: Slur crossing through accidental

2014-06-12 Thread Knute Snortum
I think I'd just adjust the tie shape: \version 2.18.2 \language english tieAdjust = \shape #'((0.0 . 0.0) (0.0 . 0.3) (0.0 . 0.5) (0.0 . 0.2)) Slur \relative c { \clef bass \time 6/8 bf8 ( d' ) r8 \tieAdjust bf,16 ( bf' ) d ( bf d bf ) } Knute Snortum (via Gmail) On Thu, Jun 12, 2014

Re: Slur crossing through accidental

2014-06-12 Thread Janek WarchoĊ‚
2014-06-12 21:31 GMT+02:00 Knute Snortum ksnor...@gmail.com: I think I'd just adjust the tie shape: \version 2.18.2 \language english tieAdjust = \shape #'((0.0 . 0.0) (0.0 . 0.3) (0.0 . 0.5) (0.0 . 0.2)) Slur I would suggest using the enhanced version with the polar coordinates, because

Re: Odp: Slur crossing through accidental

2014-06-12 Thread James Harkins
On Thursday, June 12, 2014 11:22:57 PM HKT, Karol Majewski wrote: And of course you have to increase region size. So it should be: \override Slur.details.region-size = #5 \override Slur.details.accidental-collision = #1000 Thanks, all, for the suggestions. Increasing the slur region ended up