]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/manually-break-figured-bass-extenders-for-only-some-numbers.ly
CG: explain what big staff size means in regtests
[lilypond.git] / Documentation / snippets / manually-break-figured-bass-extenders-for-only-some-numbers.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 = "chords"
11
12 %% Translation of GIT committish: 57f9346bb030f49336a858fcbf1519366fe56454
13   texidocfr = "
14 La basse chiffrée utilise fréquemment des lignes pour indiquer la
15 prolongation jusqu'à un certain point.  LilyPond est alors dispendieux
16 en ce sens qu'il place le plus de prolongateurs possible.
17 L'interruption d'un prolongateur particulier s'obtient en affectant
18 d'un @code{\\!} le chiffre qui doit être réimprimé ; ceci interrompra de
19 fait la ligne de prolongation juste avant ce chiffre.
20
21 "
22   doctitlefr = "Interruption manuelle des prolongations de certains chiffrages"
23
24   texidoc = "
25 Figured bass often uses extenders to indicate continuation of the
26 corresponding step. However, in this case lilypond is in greedy-mode
27 and uses extenders whenever possible. To break individual extenders,
28 one can simply use a modifier \\! to a number, which breaks any
29 extender attributed to that number right before the number.
30
31 "
32   doctitle = "Manually break figured bass extenders for only some numbers"
33 } % begin verbatim
34
35
36 bassfigures = \figuremode {
37   \set useBassFigureExtenders = ##t
38   <6 4>4 <6 4\!> <6 4\!> <6 4\!> |  <6\! 4\!>  <6 4> <6 4\!> <6 4>
39 }
40
41 <<
42   \new Staff \relative c'' { c1 c1 }
43   \new FiguredBass \bassfigures
44 >>
45
46
47