lilypond-user
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: Slurs cut into reminder accidentals


From: Thomas Morley
Subject: Re: Slurs cut into reminder accidentals
Date: Sat, 12 Jan 2013 11:48:02 +0100

2013/1/11 Noeck <address@hidden>:
> 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
> address@hidden
> 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



reply via email to

[Prev in Thread] Current Thread [Next in Thread]