lilypond-user
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: Figured bass: "blank" extender


From: Mats Bengtsson
Subject: Re: Figured bass: "blank" extender
Date: Tue, 14 Apr 2015 14:29:41 +0200
User-agent: Mozilla/5.0 (X11; Linux x86_64; rv:31.0) Gecko/20100101 Thunderbird/31.6.0


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



reply via email to

[Prev in Thread] Current Thread [Next in Thread]