]> git.donarmstrong.com Git - lilypond.git/blob - input/test/figured-bass.ly
9c6b0300be89eb0249300f6b702d08bf978fb5dc
[lilypond.git] / input / test / figured-bass.ly
1 \header {
2 texidoc = "Test figured bass.
3
4 Figured bass is created by the FiguredBass context which eats
5 note-requests and rest-requests.  You can enter these either using
6 standard @code{< >} notation, or using the special @code{\figures { }}
7 mode, which allows you to type numbers, like @code{<4 6+>}.
8  
9 " }
10
11 \score { \notes  <
12 \context FiguredBass \transpose c'' {
13    <e! g >
14    <f8 ais >
15    \figures {
16      r 
17      <1 3 5>4 <3- 5+ 6!> <5>
18    } 
19  }
20  \context Voice {
21    c 
22    g8 g 
23    f4
24    d
25    c
26   }
27  
28 >
29  }