]> git.donarmstrong.com Git - lilypond.git/blob - input/regression/figured-bass.ly
8ac5ed2fbfe5426a1273cc1d86de2484a9a91478
[lilypond.git] / input / regression / figured-bass.ly
1 \header {
2 texidoc = "Test figured bass.
3
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 " }
10
11 \score { \notes  <
12  \context FiguredBass {
13    \figures {
14         <_! 3+ 5- _ 7! 9 >4
15         < [4 6] >
16    }
17  }
18
19  \context Voice {
20    c 4
21    g8
22   }
23  
24 >
25  }