]> git.donarmstrong.com Git - lilypond.git/blob - input/regression/figured-bass.ly
Change direction #1, #-1 into #up, #down.
[lilypond.git] / input / regression / figured-bass.ly
1 \version "2.6.0"
2 \header {
3     texidoc = "
4 Figured bass is created by the FiguredBass context which responds to
5 figured bass requests and rest-requests.  You must enter these using
6 the special @code{\figuremode @{ @}} mode, which allows you to type
7 numbers, like @code{<4 6+>}.
8
9 You can also type letters by entering quoted strings, which is shown in the
10 last bass figure.
11
12 " }
13 \layout  { raggedright = ##t }  
14 <<
15     \figures { 
16         <3 [5 7]>
17         \once \override BassFigure  #'direction = #down
18         <3 [5 7]>
19         <3 [5] 7 [9 11]>
20         <3+ 5- 7!>
21         <3 _! 5 _- 7>
22         <3 _ 5 _ 7>
23         <"V7" ["bla" 6] \markup{ \musicglyph #"rests.2"} >
24         
25     }
26     \context Voice {
27         \clef bass
28         c 4
29         c c c c c 
30         g8
31     }
32 >>
33
34