]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/vertically-centering-paired-figured-bass-extenders.ly
LSR: update.
[lilypond.git] / Documentation / snippets / vertically-centering-paired-figured-bass-extenders.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.16"
5
6 \header {
7   lsrtags = "chords, tweaks-and-overrides"
8
9   texidoc = "
10 Where figured bass extender lines are being used by setting
11 @code{useBassFigureExtenders} to true, pairs of congruent figured bass
12 extender lines are vertically centered if
13 @code{figuredBassCenterContinuations} is set to true.
14
15 "
16   doctitle = "Vertically centering paired figured bass extenders"
17 } % begin verbatim
18
19 <<
20   \relative c' {
21     c8 c b b a a c16 c b b
22     c8 c b b a a c16 c b b
23     c8 c b b a a c c b b
24   }
25   \figures {
26     \set useBassFigureExtenders = ##t
27     <6+ 4 3>4 <6 4 3>8 r
28     <6+ 4 3>4 <6 4 3>8 <4 3+>16 r
29     \set figuredBassCenterContinuations = ##t
30     <6+ 4 3>4 <6 4 3>8 r
31     <6+ 4 3>4 <6 4 3>8 <4 3+>16 r
32     \set figuredBassCenterContinuations = ##f
33     <6+ 4 3>4 <6 4 3>8 r
34     <6+ 4 3>4 <6 4 3>8 <4 3+>8
35   }
36 >>
37