Re: Avoiding PhrasingSlur/accidental collisions

2016-02-14 Thread Noeck
Hi Andrew, this [1] is more automatic: \relative c { \override PhrasingSlur.details.accidental-collision = #1000 \repeat tremolo 8 { es'''32\( es, } es'!2\) | } I don't know what it actually means. Probably sth. like the value is very high (1000) so there is definitely a collision to avoid?

Re: Avoiding PhrasingSlur/accidental collisions

2016-02-14 Thread Trevor Daniels
Noeck wrote Sunday, February 14, 2016 12:10 PM > this [1] is more automatic: > > \relative c { > \override PhrasingSlur.details.accidental-collision = #1000 > \repeat tremolo 8 { es'''32\( es, } es'!2\) | > } > > I don't know what it actually means. Probably sth. like the value is > very

Re: Avoiding PhrasingSlur/accidental collisions

2016-02-14 Thread Simon Albrecht
On 14.02.2016 11:57, N. Andrew Walsh wrote: I see the following possible override: \once \override PhrasingSlur.details.accidental-collision = #'(3) but that doesn't seem to have any effect. Am I modifying the wrong grob here? As Joram pointed out, you need to set this to a number, not a

Re: Avoiding PhrasingSlur/accidental collisions

2016-02-14 Thread Noeck
I don't know if there are easier or more automatic ways of avoiding this, but you can move the slur up (change the 0.5 to your liking): \relative c { \shape #'((0 . 0.5) (0 . 0.5) (0 . 0.5) (0 . 0.5)) PhrasingSlur \repeat tremolo 8 { es'''32\( es, } es'!2\) | } Slurs can even cross

Avoiding PhrasingSlur/accidental collisions

2016-02-14 Thread N. Andrew Walsh
Hi List, I'm working with the following expression: \version "2.19.36" \relative c { \repeat tremolo 8 { es'''32\( es, } es'!2\) | } When that's stretched out a bit (or even, actually, here) the PhrasingSlur collides with the accidental. How do I avoid this? I see the following possible