]> git.donarmstrong.com Git - lilypond.git/blob - input/lsr/avoiding-collisions-of-chord-fingering-with-beams.ly
Doc-de: updates from master
[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 } % begin verbatim
29
30 \relative c' {
31   \set fingeringOrientations = #'(up)
32   \set stringNumberOrientations = #'(up)
33   \set strokeFingerOrientations = #'(up)
34   
35   % Default behavior
36   r8
37   <f c'-5>8
38   <f c'\5>8
39   <f c'-\rightHandFinger #2 >8
40   
41   % Corrected to avoid collisions
42   r8
43   \override Fingering #'add-stem-support = ##t
44   <f c'-5>8
45   \override StringNumber #'add-stem-support = ##t
46   <f c'\5>8
47   \override StrokeFinger #'add-stem-support = ##t
48   <f c'-\rightHandFinger #2 >8
49 }