]> git.donarmstrong.com Git - lilypond.git/blobdiff - Documentation/snippets/positioning-fingering-indications-precisely.ly
resolve merge
[lilypond.git] / Documentation / snippets / positioning-fingering-indications-precisely.ly
diff --git a/Documentation/snippets/positioning-fingering-indications-precisely.ly b/Documentation/snippets/positioning-fingering-indications-precisely.ly
new file mode 100644 (file)
index 0000000..17a8603
--- /dev/null
@@ -0,0 +1,38 @@
+%% 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.14.0"
+
+\header {
+  lsrtags = "editorial-annotations"
+
+  texidoc = "
+Generally the options available for positioning the fingering of chords
+work well by default, but if one of the indications needs to positioned
+more precisely the following tweak may be used.  This is particularly
+useful for correcting the positioning when intervals of a second are
+involved.
+
+"
+  doctitle = "Positioning fingering indications precisely"
+} % begin verbatim
+
+\relative c' {
+  \set fingeringOrientations = #'(left)
+  <c-1 d-2 a'-5>4
+  <c-1 d-\tweak #'extra-offset #'(0 . 0.7)-2 a'-5>4
+  \set fingeringOrientations = #'(down)
+  <c-1 d-2 a'-5>4
+  <c-1 d-\tweak #'extra-offset #'(-1.2 . 0)-2 a'-5>4
+  \set fingeringOrientations = #'(down right up)
+  <c-1 d-2 a'-5>4
+  <c-1 d-\tweak #'extra-offset #'(-1 . 1.2)-2 a'-5>4
+  \set fingeringOrientations = #'(up)
+  <c-1 d-2 a'-5>4
+  <c-1 d-\tweak #'extra-offset #'(-1.2 . 0)-2 a'-5>4
+}
+
+