]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/vertically-centering-paired-figured-bass-extenders.ly
Update snippets from today's LSR with changed makelsr.py
[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.dsi.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.14.2"
8
9 \header {
10   lsrtags = "tweaks-and-overrides, chords"
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 <<
24   \relative c' {
25     c8 c b b a a c16 c b b
26     c8 c b b a a c16 c b b
27     c8 c b b a a c c b b
28   }
29   \figures {
30     \set useBassFigureExtenders = ##t
31     <6+ 4 3>4 <6 4 3>8 r
32     <6+ 4 3>4 <6 4 3>8 <4 3+>16 r
33     \set figuredBassCenterContinuations = ##t
34     <6+ 4 3>4 <6 4 3>8 r
35     <6+ 4 3>4 <6 4 3>8 <4 3+>16 r
36     \set figuredBassCenterContinuations = ##f
37     <6+ 4 3>4 <6 4 3>8 r
38     <6+ 4 3>4 <6 4 3>8 <4 3+>8
39   }
40 >>