]> git.donarmstrong.com Git - lilypond.git/blob - input/regression/figured-bass.ly
* scm/bass-figure.scm (format-bass-figure): don't set
[lilypond.git] / input / regression / figured-bass.ly
1 \version "2.2.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{\figures @{ @}} 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
14 \score { \notes  <<
15  \context FiguredBass {
16    \figures { 
17         <3 [5 7]>
18 \once \override FiguredBass.BassFigure  #'direction = #-1
19         <3 [5 7]>
20         <3 [5] 7 [9 11]>
21         <3+ 5- 7!>
22         <3 _! 5 _- 7>
23         <3 _ 5 _ 7>
24         <"V7" ["bla" 6] 7>
25         
26     }
27  }
28
29  \context Voice { \clef bass
30    c 4
31    c c c c c 
32    g8
33   }
34  
35 >>
36         \paper  { raggedright = ##t }  
37  }
38
39