]> git.donarmstrong.com Git - lilypond.git/blobdiff - Documentation/snippets/positioning-fingering-indications-precisely.ly
Issue 3827: remove the necessity to have a \layout block in a \markup \score ...
[lilypond.git] / Documentation / snippets / positioning-fingering-indications-precisely.ly
index 3ca33e858122dbf4dac53214d80e9497e947be08..253b05ec0315cf1a17423e60aa0c9a90158b3213 100644 (file)
@@ -4,22 +4,11 @@
 %% 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"
 
-%% Translation of GIT committish: 28097cf54698db364afeb75658e4c8e0e0ccd716
-  texidocfr = "
-Les options par défaut en matière de positionnement des doigtés d'un
-accord donnent généralement de bons résultats.  Il se peut néanmoins
-qu'un ajustement soit nécessaire dans certains cas particuliers,
-notamment en présence d'un intervalle de seconde.  L'astuce ici
-présentée permet d'obtenir un meilleur rendu.
-
-"
-  doctitlefr = "Positionnement précis des indications de doigté"
-
   texidoc = "
 Generally the options available for positioning the fingering of chords
 work well by default, but if one of the indications needs to positioned
@@ -35,16 +24,14 @@ involved.
 \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
+  <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
+  <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
+  <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
+  <c-1 d-\tweak extra-offset #'(-1.2 . 0)-2 a'-5>4
 }
-
-