]> git.donarmstrong.com Git - lilypond.git/blob - input/regression/figured-bass.ly
* input/regression/{many}.ly: refresh, trying to guess how
[lilypond.git] / input / regression / figured-bass.ly
1 \version "2.1.22"
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.
10 " }
11
12 \score { \notes  <<
13  \context FiguredBass {
14    \figures { 
15         <3 [5 7]>
16 \once \override FiguredBass.BassFigure  #'direction = #-1
17         <3 [5 7]>
18         <3 [5] 7 [9 11]>
19         <3+ 5- 7!>
20         <3 _! 5 _- 7>
21         <3 _ 5 _ 7>
22 \override FiguredBass.BassFigure  #'font-family = #'roman
23         <"V7" ["bla" 6] 7>
24     }
25  }
26
27  \context Voice { \clef bass
28    c 4
29    c c c c c 
30    g8
31   }
32  
33 >>
34         \paper  { raggedright = ##t }  
35  }
36
37