]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/vertically-centering-paired-figured-bass-extenders.ly
5e68a12edb2dccc3c94ec6fc851f9bee11c664ce
[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.39"
5
6 \header {
7   lsrtags = "chords, tweaks-and-overrides"
8
9 %% Translation of GIT committish: 5160eccb26cee0bfd802d844233e4a8d795a1e94
10   texidoces = "
11 Allí donde se utilicen líneas extensoras para el bajo cifrado mediante
12 el establecimiento de @code{useBassFigureExtenders} al valor
13 verdadero, las parejas de líneas extensoras congruentes se centran
14 verticalmente si el valor de @code{figuredBassCenterContinuations}
15 tiene el valor verdadero.
16
17 "
18   doctitlees = "Centrado vertical de las líneas de bajo cifrado emparejadas"
19
20
21
22   texidoc = "
23 Where figured bass extender lines are being used by setting
24 @code{useBassFigureExtenders} to true, pairs of congruent figured bass
25 extender lines are vertically centered if
26 @code{figuredBassCenterContinuations} is set to true.
27
28 "
29   doctitle = "Vertically centering paired figured bass extenders"
30 } % begin verbatim
31
32 <<
33   \relative c' {
34     c8 c b b a a c16 c b b
35     c8 c b b a a c16 c b b
36     c8 c b b a a c c b b
37   }
38   \figures {
39     \set useBassFigureExtenders = ##t
40     <6+ 4 3>4 <6 4 3>8 r
41     <6+ 4 3>4 <6 4 3>8 <4 3+>16 r
42     \set figuredBassCenterContinuations = ##t
43     <6+ 4 3>4 <6 4 3>8 r
44     <6+ 4 3>4 <6 4 3>8 <4 3+>16 r
45     \set figuredBassCenterContinuations = ##f
46     <6+ 4 3>4 <6 4 3>8 r
47     <6+ 4 3>4 <6 4 3>8 <4 3+>8
48   }
49 >>
50