1
2\paper {
3  ragged-right = ##t
4}
5
6\version "2.19.21"
7
8\header {
9
10  texidoc = "Figured bass can also be added to Staff context directly.
11In that case, the figures must be entered with @code{\\figuremode} and be directed
12to an existing @code{Staff} context.
13
14Since these engravers are on @code{Staff} level, properties
15controlling figured bass should be set in @code{Staff} context.
16
17"
18
19}
20
21<<
22
23  \new Staff = someUniqueName
24  \relative {
25    c''4 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>>
37