]> git.donarmstrong.com Git - lilypond.git/blob - input/regression/figured-bass.ly
* scm/chords-ignatzek.scm (alteration->text-accidental-markup):
[lilypond.git] / input / regression / figured-bass.ly
1 \version "1.7.6"
2 \header {
3 texidoc = "Test figured bass.
4
5 Figured bass is created by the FiguredBass context which eats
6 figured bass requests and  rest-requests.  You must enter these using
7 the special @code{\figures @{ @}} mode, which allows you to type
8 numbers, like @code{<4 6+>}.
9  
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 %       <3 [4 6] 7>
22    }
23  }
24
25  \context Voice { \clef bass
26    c 4
27    c c c c c 
28    g8
29   }
30  
31 >
32  }
33 %% new-chords-done %%