]> git.donarmstrong.com Git - lilypond.git/blob - input/regression/figured-bass.ly
move from abe.ly
[lilypond.git] / input / regression / figured-bass.ly
1 \version "1.7.18"
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 " }
10
11 \score { \notes  <
12  \context FiguredBass {
13    \figures {
14         <3 [5 7]>
15 \once \property FiguredBass.BassFigure \set #'direction = #-1
16         <3 [5 7]>
17         <3 [5] 7 [9 11]>
18         <3+ 5- 7!>
19         <3 _ 5 _ 7>
20 %       <3 [4 6] 7>
21    }
22  }
23
24  \context Voice { \clef bass
25    c 4
26    c c c c c 
27    g8
28   }
29  
30 >
31         \paper  { raggedright = ##t }  
32  }
33
34 %% new-chords-done %%