]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/avoiding-collisions-with-chord-fingerings.ly
ff1cc180047732af9d6b7953f56837ee7336d355
[lilypond.git] / Documentation / snippets / avoiding-collisions-with-chord-fingerings.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, rhythms, editorial-annotations"
11
12 %% Translation of GIT committish: b482c3e5b56c3841a88d957e0ca12964bd3e64fa
13
14   texidoces = "
15
16 Las digitaciones y números de cuerda que se aplican a las notas
17 individuales evitan automáticamente las barras y las plicas de las
18 figuras, pero esto no es cierto de forma predeterminada para las
19 digitaciones y números de cuerda que se aplican sobre notas
20 individuales de acordes.  El ejemplo siguiente muestra cómo se puede
21 sobreescribir este comportamiento predeterminado.
22
23 "
24   doctitlees = "Evitar colisiones con digitaciones de acordes"
25
26
27 %% Translation of GIT committish: 85394d425536d267ed0cb71d17023849f1611180
28   texidocfr = "
29 Doigtés et numéros de corde, lorsque affectés à des notes individuelles,
30 évitent les hampes et ligatures.  Cette fonctionnalité n'est pas activée
31 par défaut en ce qui concernes les notes appartenant à un accord.  Voici
32 comment mettre en place la dérogation appropriée en pareil cas.
33
34 "
35   doctitlefr = "Évitement de collision des doigtés d'un accord"
36
37   texidoc = "
38 Fingerings and string numbers applied to individual notes will
39 automatically avoid beams and stems, but this is not true by default
40 for fingerings and string numbers applied to the individual notes of
41 chords.  The following example shows how this default behavior can be
42 overridden.
43
44 "
45   doctitle = "Avoiding collisions with chord fingerings"
46 } % begin verbatim
47
48
49 \relative c' {
50   \set fingeringOrientations = #'(up)
51   \set stringNumberOrientations = #'(up)
52   \set strokeFingerOrientations = #'(up)
53
54   % Default behavior
55   r8
56   <f c'-5>8
57   <f c'\5>8
58   <f c'-\rightHandFinger #2 >8
59
60   % Corrected to avoid collisions
61   r8
62   \override Fingering #'add-stem-support = ##t
63   <f c'-5>8
64   \override StringNumber #'add-stem-support = ##t
65   <f c'\5>8
66   \override StrokeFinger #'add-stem-support = ##t
67   <f c'-\rightHandFinger #2 >8
68 }
69