Le 01/11/2021 à 23:20, Kenneth Wolcott a écrit :
How to force the placement of the ottava bracket to be below the
notes? (or above?)
Below: just \override the direction. Above: prior
to version 2.23.3, you had to use the lesser known
\overrideProperty (see
https://gitlab.com/lilypond/lilypond/-/merge_requests/762).
\version "2.22.1"
{
\override Staff.OttavaBracket.direction = #DOWN
\ottava 1
c'1
}
{
%% Does not work in 2.22, works from 2.23.3
%% \override Staff.OttavaBracket.direction = #UP
%% Works in all cases
\overrideProperty Staff.OttavaBracket.direction #UP
\ottava -1
c'1
}
Best,
Jean