]> git.donarmstrong.com Git - lilypond.git/blobdiff - input/lsr/engraving-ties-manually.ly
Merge master into nested-bookparts
[lilypond.git] / input / lsr / engraving-ties-manually.ly
index 58781733e66a41d9decf1e1b42df3f2b14d30816..21ff797d876232daf5960d247d25ef6a19b39313 100644 (file)
@@ -1,19 +1,31 @@
 %% Do not edit this file; it is auto-generated from LSR http://lsr.dsi.unimi.it
 %% This file is in the public domain.
-\version "2.11.38"
+\version "2.11.62"
 
 \header {
   lsrtags = "rhythms"
- texidoc = "
+
+ doctitlees = "Grabado manual de las ligaduras"
+ texidoces = "
+Se pueden grabar a mano las ligaduras modificando la propiedad
+@code{tie-configuration} del objeto @code{TieColumn}. El primer número
+indica la distancia a partir de la tercera línea del pentagrama en
+espacios de pentagrama, y el segundo número indica la dirección (1 =
+hacia arriba, -1 = hacia abajo).
+
+"
+  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).
-" }
-% begin verbatim
+
+"
+  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>~ <c e g> |
+  <c e g> ~ <c e g>
 }