]> 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 7df4deb9a1d3d8b39b379f36c4b8e181307314a2..9af5fffa99995a2950d7f2526faf37c281f1e73e 100644 (file)
@@ -1,25 +1,13 @@
-%% Do not edit this file; it is automatically
+%% DO NOT EDIT this file manually; it is automatically
 %% generated from LSR http://lsr.dsi.unimi.it
+%% Make any changes in LSR itself, or in Documentation/snippets/new/ ,
+%% and then run scripts/auxiliar/makelsr.py
+%%
 %% This file is in the public domain.
-\version "2.13.39"
+\version "2.17.6"
 
 \header {
-  lsrtags = "rhythms, editorial-annotations, chords, tweaks-and-overrides"
-
-%% Translation of GIT committish: 298a2c322d7e4f437f3dd1a24db2839e3f35acce
-
-  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
@@ -32,6 +20,7 @@ overridden.
   doctitle = "Avoiding collisions with chord fingerings"
 } % begin verbatim
 
+
 \relative c' {
   \set fingeringOrientations = #'(up)
   \set stringNumberOrientations = #'(up)
@@ -45,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
 }
-