Le 07/08/2021 à 17:47, Knute Snortum a écrit :
I'm engraving a musical figure with 16 notes in one voice and an eight
note with an accidental in the other. MWE:

%%%
\version "2.23.3"
\language "english"

\relative c'' {
   << { ff16 ( bf ) } \\ { df,8 } >> <d e>8
}
%%%

The <d e> chord seems way too close to the bf (see attachment). Is
there a work-around?  Is there a better way to write this?

--
Knute Snortum


Perhaps

\version "2.22.1"
\language "english"

\relative c'' {
  << { ff16 ( bf ) } \\ { df,8 } >>
  \tweak Accidental.extra-spacing-height #'(-inf.0 . +inf.0) <d e>8
}

An explanation is found at
https://lilypond.org/doc/v2.23/Documentation/internals/user-backend-properties

Best,
Jean


Reply via email to