]> git.donarmstrong.com Git - lilypond.git/blobdiff - Documentation/snippets/avoiding-collisions-with-chord-fingerings.ly
Merge remote-tracking branch 'origin/master' into translation
[lilypond.git] / Documentation / snippets / avoiding-collisions-with-chord-fingerings.ly
index d4867310441f6b493fe3af660e8e844bee2a5b4c..9af5fffa99995a2950d7f2526faf37c281f1e73e 100644 (file)
@@ -4,25 +4,10 @@
 %% and then run scripts/auxiliar/makelsr.py
 %%
 %% This file is in the public domain.
-\version "2.14.2"
+\version "2.17.6"
 
 \header {
-  lsrtags = "editorial-annotations, chords, tweaks-and-overrides, rhythms"
-
-%% Translation of GIT committish: b482c3e5b56c3841a88d957e0ca12964bd3e64fa
-
-  texidoces = "
-
-Las digitaciones y números de cuerda que se aplican a las notas
-individuales evitan automáticamente las barras y las plicas de las
-figuras, pero esto no es cierto de forma predeterminada para las
-digitaciones y números de cuerda que se aplican sobre notas
-individuales de acordes.  El ejemplo siguiente muestra cómo se puede
-sobreescribir este comportamiento predeterminado.
-
-"
-  doctitlees = "Evitar colisiones con digitaciones de acordes"
-
+  lsrtags = "chords, editorial-annotations, rhythms, tweaks-and-overrides"
 
   texidoc = "
 Fingerings and string numbers applied to individual notes will
@@ -49,11 +34,10 @@ overridden.
 
   % Corrected to avoid collisions
   r8
-  \override Fingering #'add-stem-support = ##t
+  \override Fingering.add-stem-support = ##t
   <f c'-5>8
-  \override StringNumber #'add-stem-support = ##t
+  \override StringNumber.add-stem-support = ##t
   <f c'\5>8
-  \override StrokeFinger #'add-stem-support = ##t
+  \override StrokeFinger.add-stem-support = ##t
   <f c'-\rightHandFinger #2 >8
 }
-