]> git.donarmstrong.com Git - lilypond.git/blob - input/lsr/avoiding-collisions-of-chord-fingering-with-beams.ly
Merge branch 'lilypond/translation' of ssh://jomand@git.sv.gnu.org/srv/git/lilypond
[lilypond.git] / input / lsr / avoiding-collisions-of-chord-fingering-with-beams.ly
1 %% Do not edit this file; it is auto-generated from LSR http://lsr.dsi.unimi.it
2 %% This file is in the public domain.
3 \version "2.12.0"
4
5 \header {
6   lsrtags = "rhythms, editorial-annotations, chords, tweaks-and-overrides"
7
8   texidoces = "
9 Las digitaciones y los números de cuerda aplicados a notas
10 individuales evitan a las barras automáticamente, pero de forma
11 predeterminada esto no es cierto para las digitaciones y números
12 de cuerda que se aplican a notas concretas de acordes.  El ejemplo
13 siguiente muestra cómo se puede sobreescribir este comportamiento
14 predeterminado:
15
16 "
17   doctitlees = "Evitar colisiones entre digitaciones de acordes y barras de corchea"
18
19   texidoc = "
20 Fingerings and string numbers applied to individual notes will
21 automatically avoid beams, but this is not true by default for
22 fingerings and string numbers applied to the individual notes of
23 chords.  The following example shows how this default behavior can be
24 overridden:   
25
26 "
27   doctitle = "Avoiding collisions of chord fingering with beams"
28   texidocfr = "
29 Les doigtés et les numéros de cordes attachés à des notes seules
30 évitent automatiquement les barres de ligature, mais ce n'est pas le
31 cas par défaut pour les doigtés ou numéros de cordes attachés aux
32 notes d'un accord. L'exemple qui suit montre comment ce comportement
33 par défaut peut être corrigé.
34 "
35   doctitlefr = "Éviter les collisions entre les doigtés d'accords et les ligatures"
36 } % begin verbatim
37
38 \relative c' {
39   \set fingeringOrientations = #'(up)
40   \set stringNumberOrientations = #'(up)
41   \set strokeFingerOrientations = #'(up)
42   
43   % Default behavior
44   r8
45   <f c'-5>8
46   <f c'\5>8
47   <f c'-\rightHandFinger #2 >8
48   
49   % Corrected to avoid collisions
50   r8
51   \override Fingering #'add-stem-support = ##t
52   <f c'-5>8
53   \override StringNumber #'add-stem-support = ##t
54   <f c'\5>8
55   \override StrokeFinger #'add-stem-support = ##t
56   <f c'-\rightHandFinger #2 >8
57 }