]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/manually-break-figured-bass-extenders-for-only-some-numbers.ly
LSR: update.
[lilypond.git] / Documentation / snippets / manually-break-figured-bass-extenders-for-only-some-numbers.ly
1 %% Do not edit this file; it is automatically
2 %% generated from LSR http://lsr.dsi.unimi.it
3 %% This file is in the public domain.
4 \version "2.13.20"
5
6 \header {
7   lsrtags = "chords"
8
9   texidoc = "
10 Figured bass often uses extenders to indicate continuation of the
11 corresponding step. However, in this case lilypond is in greedy-mode
12 and uses extenders whenever possible. To break individual extenders,
13 one can simply use a modifier \\! to a number, which breaks any
14 extender attributed to that number right before the number.
15
16 "
17   doctitle = "Manually break figured bass extenders for only some numbers"
18 } % begin verbatim
19
20 bassfigures = \figuremode {
21   \set useBassFigureExtenders = ##t
22   <6 4>4 <6 4\!> <6 4\!> <6 4\!> |  <6\! 4\!>  <6 4> <6 4\!> <6 4>
23 }
24
25 <<
26   \new Staff \relative c'' { c1 c1 }
27   \new FiguredBass \bassfigures
28 >>
29
30
31