]> git.donarmstrong.com Git - lilypond.git/blob - input/test/figured-bass.ly
* lily/stem.cc (get_default_stem_end_position): use beam_count - 1
[lilypond.git] / input / test / 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 note-requests and rest-requests.  You can enter these either using
7 standard @code{< >} notation, or using the special @code{\figures @{ @}}
8 mode, which allows you to type numbers, like @code{<4 6+>}.
9  
10 " }
11
12 \score { \notes  <
13 \context FiguredBass \transpose c'' {
14    <e! g >
15    <f8 ais >
16    \figures {
17      r8
18      <1 3 5>4 <3- 5+ 6!> <5>
19    } 
20  }
21  \context Voice {
22    c 
23    g8 g 
24    f4
25    d
26    c
27   }
28  
29 >
30  }