]> git.donarmstrong.com Git - lilypond.git/blob - input/regression/figured-bass.ly
* lily/stem.cc (get_default_stem_end_position): use beam_count - 1
[lilypond.git] / input / regression / figured-bass.ly
1 \version "1.5.68"
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! 9 >4
16         < [4 6] >
17    }
18  }
19
20  \context Voice {
21    c 4
22    g8
23   }
24  
25 >
26  }