]> git.donarmstrong.com Git - lilypond.git/blob - input/regression/figured-bass.ly
* Documentation/user/instrument-notation.itely (Figured bass):
[lilypond.git] / input / regression / figured-bass.ly
1 \version "2.7.12"
2
3 \header {
4
5
6   texidoc = " Figured bass is created by the FiguredBass context which
7 responds to figured bass events and rest events.  You must enter these
8 using the special @code{\figuremode @{ @}} mode, which allows you to
9 type numbers, like @code{<4 6+>}.
10
11 You can also enter markup strings. The vertical alignment may also be
12 tuned.
13
14 "
15
16 }
17
18
19 \paper { raggedright = ##t }
20
21
22 <<
23   \context Voice {
24     \clef bass
25     c 4
26     c c c c c 
27     g8
28   }
29   \figures { 
30     <3 [5 7]>
31     <3 [5] 7 [9 11]>
32     <3+ 5- 7!>
33     <3 _! 5 _- 7>
34     <3 _ 5 _ 7>
35     <"V7" ["bla" 6] \markup{ \musicglyph #"rests.2"} >
36
37     \once \override BassFigureAlignment #'stacking-dir = #UP
38     <3 [5 7]>
39     
40   }
41 >>
42
43