Hi Richard,
Your option is more elegant than mine!
In short, yours goes:
\version "2.18.2"
bassFig = \figuremode {
<5 4>4 <3>
}
\new Staff <<
\bassFig
\new Voice \relative c' { f2 }
>>
For the record, if you want the figures below the stave and want the "3"
aligned with the "4", one trick is to swap the direction in which the
figures are added vertically. Don't forget to also swap the order of the
figures within each "chord":
\version "2.18.2"
bassFig = \figuremode {
\override BassFigureAlignment.stacking-dir = #UP
<4 5>4 <3>
}
<<
\new Staff {
\new Voice \relative c' { f2 }
}
\new FiguredBass \bassFig
>>
/Mats
_______________________________________________
lilypond-user mailing list
lilypond-user@gnu.org
https://lists.gnu.org/mailman/listinfo/lilypond-user