]> git.donarmstrong.com Git - lilypond.git/blob - input/regression/figured-bass-staff.ly
ce55332901dedfdd6c302de8044951d0d68d9cc5
[lilypond.git] / input / regression / figured-bass-staff.ly
1
2 \paper {
3   ragged-right = ##t
4 }
5
6 \version "2.9.7"
7
8 \header {
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 Since these engravers are on @code{Staff} level, properties
15 controlling figured bass should be set in @code{Staff} context.
16
17 "
18
19 }
20
21 <<
22
23   \new Staff = someUniqueName
24   \relative c'' {
25     c4 c'8 r8 c,4 c'
26   }
27
28   %% send to existing Staff.
29   \context Staff = someUniqueName 
30   \figuremode {
31     <4>4 <4>8 s8
32     
33     \set Staff.useBassFigureExtenders = ##t
34     <4 6>4 <4 6>
35   }
36 >>