]> git.donarmstrong.com Git - lilypond.git/blob - input/regression/figured-bass.ly
lilypond-manuals.css: edit color scheme and some spacing
[lilypond.git] / input / regression / figured-bass.ly
1 \version "2.17.6"
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+>} and add slashes, backslashes and pluses.
10
11 You can also enter markup strings. The vertical alignment may also be tuned.
12
13 "
14
15 }
16
17
18 \paper { ragged-right = ##t }
19
20
21 <<
22   \context Voice {
23     \clef bass
24     c 4
25     c c c c c 
26     g8
27   }
28   \figures { 
29     <3 [5 7]>
30     <3\+ [5/] 7/ [9 11]>
31     <3+ 5- 7!>
32     <3 _! 5 _- 7>
33     <3 _ 5 _ 7>
34     <3 6/ >
35     <3 6\\ >
36     <"V7" ["bla" 6] \markup{ \musicglyph #"rests.2"} >
37
38     \once \override BassFigureAlignment.stacking-dir = #UP
39     <3 [5 7]>
40     
41   }
42 >>
43
44