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