]> git.donarmstrong.com Git - lilypond.git/blobdiff - input/lsr/avoiding-collisions-with-chord-fingerings.ly
Imported Upstream version 2.14.2
[lilypond.git] / input / lsr / avoiding-collisions-with-chord-fingerings.ly
diff --git a/input/lsr/avoiding-collisions-with-chord-fingerings.ly b/input/lsr/avoiding-collisions-with-chord-fingerings.ly
deleted file mode 100644 (file)
index b0c4377..0000000
+++ /dev/null
@@ -1,39 +0,0 @@
-%% Do not edit this file; it is auto-generated from LSR http://lsr.dsi.unimi.it
-%% This file is in the public domain.
-\version "2.12.3"
-
-\header {
-  lsrtags = "rhythms, editorial-annotations, chords, tweaks-and-overrides"
-
-  texidoc = "
-Fingerings and string numbers applied to individual notes will
-automatically avoid beams and stems, but this is not true by default
-for fingerings and string numbers applied to the individual notes of
-chords.  The following example shows how this default behavior can be
-overridden.
-
-"
-  doctitle = "Avoiding collisions with chord fingerings"
-} % begin verbatim
-
-\relative c' {
-  \set fingeringOrientations = #'(up)
-  \set stringNumberOrientations = #'(up)
-  \set strokeFingerOrientations = #'(up)
-  
-  % Default behavior
-  r8
-  <f c'-5>8
-  <f c'\5>8
-  <f c'-\rightHandFinger #2 >8
-  
-  % Corrected to avoid collisions
-  r8
-  \override Fingering #'add-stem-support = ##t
-  <f c'-5>8
-  \override StringNumber #'add-stem-support = ##t
-  <f c'\5>8
-  \override StrokeFinger #'add-stem-support = ##t
-  <f c'-\rightHandFinger #2 >8
-}
-