X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=input%2Fregression%2Ffigured-bass.ly;h=a5a9cde1fc39ade9b43578bf61d6aa00e0422c37;hb=8ef5f99e63cc9e52c7c0071cde4d99e057d10329;hp=4fc80520cd48bb93bb5fb58b34cde20a6268a124;hpb=ecaf73bb03e974018c17e3051b3ac3a805dd1653;p=lilypond.git diff --git a/input/regression/figured-bass.ly b/input/regression/figured-bass.ly index 4fc80520cd..a5a9cde1fc 100644 --- a/input/regression/figured-bass.ly +++ b/input/regression/figured-bass.ly @@ -1,37 +1,44 @@ -\version "2.1.28" +\version "2.17.6" + \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, backslashes 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/ > + <3 6\\ > + <"V7" ["bla" 6] \markup{ \musicglyph #"rests.2"} > + + \once \override BassFigureAlignment.stacking-dir = #UP + <3 [5 7]> + } - >> - \paper { raggedright = ##t } - }