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