]> git.donarmstrong.com Git - lilypond.git/blob - input/regression/figured-bass.ly
*** empty log message ***
[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 You can also type letters by entering quoted strings, as demonstrated in the last example. 
10 " }
11
12 \score { \notes  <
13  \context FiguredBass {
14    \figures {
15         <3 [5 7]>
16 \once \property FiguredBass.BassFigure \set #'direction = #-1
17         <3 [5 7]>
18         <3 [5] 7 [9 11]>
19         <3+ 5- 7!>
20         <3 _! 5 _- 7>
21 \property FiguredBass.BassFigure \set #'font-family = #'roman
22         <"V7" ["bla" 6] 7>
23    }
24  }
25
26  \context Voice { \clef bass
27    c 4
28    c c c c c 
29    g8
30   }
31  
32 >
33         \paper  { raggedright = ##t }  
34  }
35
36