]> git.donarmstrong.com Git - lilypond.git/blobdiff - Documentation/snippets/engraving-ties-manually.ly
Loglevels in our python scripts (lilypond-book, musicxml2ly, convert-ly)
[lilypond.git] / Documentation / snippets / engraving-ties-manually.ly
index 9d5c482965f5107e36940519e7066010dc0012e5..f39d3fd353ae156ee8773033d24f7a11ae211a46 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.39"
+\version "2.14.0"
 
 \header {
   lsrtags = "rhythms"
 
-%% Translation of GIT committish: 5160eccb26cee0bfd802d844233e4a8d795a1e94
+%% Translation of GIT committish: 70f5f30161f7b804a681cd080274bfcdc9f4fe8c
  doctitlees = "Grabado manual de las ligaduras"
  texidoces = "
 Se pueden grabar a mano las ligaduras modificando la propiedad
@@ -44,7 +47,7 @@ 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
+distance from the center of the staff in half staff-spaces, and the second
 number indicates the direction (1 = up, -1 = down).
 
 "
@@ -52,9 +55,9 @@ number indicates the direction (1 = up, -1 = down).
 } % 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>
 }