]> git.donarmstrong.com Git - lilypond.git/blob - input/regression/figured-bass.ly
* scripts/convert-ly.py (conv): fixed \context Foo = mixedCaps
[lilypond.git] / input / regression / figured-bass.ly
1 \version "2.4.0"
2 \header {
3     texidoc = "
4 Figured bass is created by the FiguredBass context which eats
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 = #-1
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] 7>
24         
25     }
26     \context Voice {
27         \clef bass
28         c 4
29         c c c c c 
30         g8
31     }
32 >>
33
34