]> git.donarmstrong.com Git - lilypond.git/blobdiff - Documentation/snippets/engraving-ties-manually.ly
Merge branch 'master' into lilypond/translation
[lilypond.git] / Documentation / snippets / engraving-ties-manually.ly
index 06fe07f7d6dbbc9e8fa1323fde932693790c156b..71f8c0974a61724431c3d8a21bb07b0b36707d84 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.16"
+\version "2.14.0"
 
 \header {
   lsrtags = "rhythms"
 
-%% Translation of GIT committish: 5a7301fc350ffc3ab5bd3a2084c91666c9e9a549
+%% Translation of GIT committish: 2d548a99cb9dba80f2ff035582009477cd37eceb
  doctitlees = "Grabado manual de las ligaduras"
  texidoces = "
 Se pueden grabar a mano las ligaduras modificando la propiedad
@@ -17,6 +20,7 @@ hacia arriba, -1 = hacia abajo).
 
 "
 
+
 %% Translation of GIT committish: 0a868be38a775ecb1ef935b079000cebbc64de40
 texidocde = "
 Überbindungen können manuell gesetzt werden, indem man die
@@ -29,6 +33,7 @@ Notensystemabständen an, die zweite Zahl zeigt die Richtung an (1 = nach oben,
   doctitlede = "Bindebögen manuell setzen"
 
 
+
 %% Translation of GIT committish: 4da4307e396243a5a3bc33a0c2753acac92cb685
   texidocfr = "
 Il est possible de graver manuellement les liaisons de tenue, en
@@ -42,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).
 
 "
@@ -50,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>
 }