2013/1/11 Noeck <noeck.marb...@gmx.de>:
> Am 11.01.2013 18:38, schrieb Phil Holmes:
>
>> { \clef bass fis8( d'!8 b4) }
>
> This is hard do decide for me. Others might have more experience in
> engraving decisions/practice.
>
> My suggestion would be to change the slur only a little bit:
> \version "2.16.0"
> {
>    \clef bass
>    \shape Slur #'((0 . 0) (0 . 1) (0 . 1) (0 . 0))
>    fis8( d'!8 b4)
> }
>
> But if you want to avoid the collision completely, you can change the
> slur parameters further (or find your own values):
> \version "2.16.0"
> {
>    \clef bass
>    \shape Slur #'((0 . 0) (0 . 2.5) (-1 . 1) (0 . 0))
>    fis8( d'!8 b4)
> }
>
> As another alternative, you could shift the accidental (but I do not
> know if that meets music notation conventions):
> \version "2.16.0"
> {
>    \clef bass
>    fis8(
>    \once \override Accidental #'extra-offset = #'(-2 . 0)
>    d'!8 b4)
> }
>
>
> Btw, in a newer version you can write:
> fis8-\shape #'((0 . 0) (0 . 1) (0 . 1) (0 . 0)) (
>
> Cheers,
> Joram
>
> _______________________________________________
> lilypond-user mailing list
> lilypond-user@gnu.org
> https://lists.gnu.org/mailman/listinfo/lilypond-user


Other possibility:

\version "2.16.1"

{
   \clef bass
   \once\override Slur #'ratio  = #6
   \once\override Slur #'height-limit  = #3
   fis8( d'!8 b4)
}

HTH,
  Harm

_______________________________________________
lilypond-user mailing list
lilypond-user@gnu.org
https://lists.gnu.org/mailman/listinfo/lilypond-user

Reply via email to