]> git.donarmstrong.com Git - lilypond.git/blobdiff - Documentation/snippets/engraving-ties-manually.ly
Update LSR and fix Issue 1971
[lilypond.git] / Documentation / snippets / engraving-ties-manually.ly
index 3457b6bf9676d2f13b988ab219650a08291450cc..f09afb6d3bd918380ef1f3e9be7e9cd9cf456583 100644 (file)
@@ -1,12 +1,15 @@
-%% 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.20"
+\version "2.14.0"
 
 \header {
   lsrtags = "rhythms"
 
-%% Translation of GIT committish: e0aa246e0ed1a86dc41a99ab79bff822d3320aa7
+%% Translation of GIT committish: 8b93de6ce951b7b14bc7818f31019524295b990f
  doctitlees = "Grabado manual de las ligaduras"
  texidoces = "
 Se pueden grabar a mano las ligaduras modificando la propiedad
@@ -44,17 +47,17 @@ le second la direction (1 pour haut, @minus{}1 pour bas).
   texidoc = "
 Ties may be engraved manually by changing the @code{tie-configuration}
 property of the @code{TieColumn} object. The first number indicates the
-distance from the center of the staff in staff-spaces, and the second
-number indicates the direction (1 = up, -1 = down).
+distance from the center of the staff in half staff-spaces, and the
+second number indicates the direction (1 = up, -1 = down).
 
 "
   doctitle = "Engraving ties manually"
 } % begin verbatim
 
 \relative c' {
-  <c e g>2 ~ <c e g>
+  <c e g>2~ <c e g>
   \override TieColumn #'tie-configuration =
     #'((0.0 . 1) (-2.0 . 1) (-4.0 . 1))
-  <c e g>2 ~ <c e g>
+  <c e g>2~ <c e g>
 }