]> git.donarmstrong.com Git - lilypond.git/blob - input/regression/figured-bass-staff.ly
Fix some bugs in the dynamic engraver and PostScript backend
[lilypond.git] / input / regression / figured-bass-staff.ly
1
2 \paper {
3   ragged-right = ##t
4
5 }
6 \version "2.9.7"
7 \header {
8
9
10   texidoc = "Figured bass can also be added to Staff context directly.
11 In that case, the figures must be entered with @code{\\figuremode} and be directed
12 to an existing @code{Staff} context."
13
14   }
15
16 <<
17
18   \new Staff = someUniqueName
19   \relative c'' {
20     c4 c'8 r8 c,4 c'
21   }
22
23   %% send to existing Staff.
24   \context Staff = someUniqueName 
25   \figuremode {
26     <4>4 <4>8 s8
27     
28     \set Staff.useBassFigureExtenders = ##t
29     <4 6>4 <4 6>
30   }
31 >>