X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=input%2Fregression%2Ffigured-bass.ly;h=b710399117905f6c74d807d1c2743bc776740958;hb=169a91c8514e3dcea29d1aa01653a684fb60457d;hp=a1cd5804d22d3803b9adbe3215767b3866e8c43f;hpb=eba82770802a246bca4afab7eab1f78e84785214;p=lilypond.git diff --git a/input/regression/figured-bass.ly b/input/regression/figured-bass.ly index a1cd5804d2..b710399117 100644 --- a/input/regression/figured-bass.ly +++ b/input/regression/figured-bass.ly @@ -1,37 +1,43 @@ -\version "2.1.26" +\version "2.10.0" + \header { -texidoc = " -Figured bass is created by the FiguredBass context which eats -figured bass requests and rest-requests. You must enter these using -the special @code{\figures @{ @}} mode, which allows you to type -numbers, like @code{<4 6+>}. - -You can also type letters by entering quoted strings. -" } - -\score { \notes << - \context FiguredBass { - \figures { - <3 [5 7]> -\once \override FiguredBass.BassFigure #'direction = #-1 - <3 [5 7]> - <3 [5] 7 [9 11]> - <3+ 5- 7!> - <3 _! 5 _- 7> - <3 _ 5 _ 7> -\override FiguredBass.BassFigure #'font-family = #'roman - <"V7" ["bla" 6] 7> - } - } - - \context Voice { \clef bass - c 4 - c c c c c - g8 + + + texidoc = " Figured bass is created by the FiguredBass context which +responds to figured bass events and rest events. You must enter these +using the special @code{\figuremode @{ @}} mode, which allows you to +type numbers, like @code{<4 6+>} and add slashes and pluses. + +You can also enter markup strings. The vertical alignment may also be tuned. + +" + +} + + +\paper { ragged-right = ##t } + + +<< + \context Voice { + \clef bass + c 4 + c c c c c + g8 + } + \figures { + <3 [5 7]> + <3\+ [5/] 7/ [9 11]> + <3+ 5- 7!> + <3 _! 5 _- 7> + <3 _ 5 _ 7> + <3 6/ > + <"V7" ["bla" 6] \markup{ \musicglyph #"rests.2"} > + + \once \override BassFigureAlignment #'stacking-dir = #UP + <3 [5 7]> + } - >> - \paper { raggedright = ##t } - }