]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/vertically-centering-paired-figured-bass-extenders.ly
Merge branch 'master' into lilypond/translation
[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 %% Translation of GIT committish: 5a7301fc350ffc3ab5bd3a2084c91666c9e9a549
8   texidoces = "
9 Allí donde se utilicen líneas extensoras para el bajo cifrado mediante
10 el establecimiento de @code{useBassFigureExtenders} al valor
11 verdadero, las parejas de líneas extensoras congruentes se centran
12 verticalmente si el valor de @code{figuredBassCenterContinuations}
13 tiene el valor verdadero.
14
15 "
16   doctitlees = "Centrado vertical de las líneas de bajo cifrado emparejadas"
17
18
19
20   lsrtags = "chords, tweaks-and-overrides"
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