Le 18/11/2021 à 05:02, Mark Stephen Mrotek a écrit :

Hello,

To get instructions I went to

https://lilypond.org/doc/v2.22/Documentation/notation/expressive-marks-attached-to-notes

And copied the code only modifying pitch and duration.

\version "2.22.1"

\relative c' {

  \time 2/4

  \key aes \major

  ees'4

  <<

    { f,8. [(aes32 c)] }

    {

      s8

      \once \set suggestAccidentals = ##t

      \once \override AccidentalSuggestion.outside-staff-priority = ##f

      \once \override AccidentalSuggestion.avoid-slur = #'inside

      \once \override AccidentalSuggestion.font-size = -3

      \once \override AccidentalSuggestion.script-priority = -1

      \single \hideNotes

      b16-\turn \noBeam

      s

    }

  >>

An extended beam appears and the turn collides with the expected beam.

Any assistance greatly appreciated.

Thank you for your kind attention

Mark



Mark,

Simply remove the override for outside-staff-priority.
It is unneeded if the slur is not on the same side as
the script, and causes problems with the beam as you
experienced.


Another way is

\once \override AccidentalSuggestion.padding = 1.7

Best,
Jean


Reply via email to