> On 9 Apr 2025, at 09:02, Helge Kruse <helge.kr...@gmx.net> wrote: > > I am sometimes not happy with the order of accidentals that Lilypond > places. In the following example I would like to have the sharp right of > the flat accidential, i.e. more narrower to the fis notehead: > > \version "2.24.4" > \relative c { > \key d \minor > \clef bass > <fis c'! d> > } > > How can I tweak the accidential position?
A quick google turns up https://music.stackexchange.com/questions/130356/lilypond-adjusting-position-of-accidentals-of-a-chord So that would translate to somethng like (you might want to further finetune the offsets until you appreciate the looks) \relative c { \key d \minor \clef bass \once\override Staff.AccidentalPlacement.positioning-done = ##f <\tweak Accidental.X-offset #-2.08 fis \tweak Accidental.X-offset #-3.11 c'! d> } > > Best regards, > Helge > >