Comment #1 on issue 3036 by [email protected]: Ligature brackets and
suggested accidentals don't avoid each other well
http://code.google.com/p/lilypond/issues/detail?id=3036
Eluze posted a helpful workaround here:
http://lists.gnu.org/archive/html/bug-lilypond/2012-12/msg00072.html
Ben Rudiak-Gould wrote
% The flat symbol is unreasonably far above the note
\version "2.17.8"
{ \set suggestAccidentals = ##t \[ a'2 bes' \] }
(As a workaround, is there any way to make the brackets and
accidentals not try to avoid each other at all? This seems to be the
case with brackets and fermatas and it looks okay.)
here's a first tweak to improve the output:
\override LigatureBracket.outside-staff-priority = #200
\override AccidentalSuggestion.outside-staff-priority = #100
maybe further tweaking (padding, Y-…) will help bringing down the bracket a
bit
Eluze