]> git.donarmstrong.com Git - lilypond.git/blob - input/lsr/engraving-ties-manually.ly
Merge master into nested-bookparts
[lilypond.git] / input / lsr / engraving-ties-manually.ly
1 %% Do not edit this file; it is auto-generated from LSR http://lsr.dsi.unimi.it
2 %% This file is in the public domain.
3 \version "2.11.62"
4
5 \header {
6   lsrtags = "rhythms"
7
8  doctitlees = "Grabado manual de las ligaduras"
9  texidoces = "
10 Se pueden grabar a mano las ligaduras modificando la propiedad
11 @code{tie-configuration} del objeto @code{TieColumn}. El primer número
12 indica la distancia a partir de la tercera línea del pentagrama en
13 espacios de pentagrama, y el segundo número indica la dirección (1 =
14 hacia arriba, -1 = hacia abajo).
15
16 "
17   texidoc = "
18 Ties may be engraved manually by changing the @code{tie-configuration}
19 property of the @code{TieColumn} object. The first number indicates the
20 distance from the center of the staff in staff-spaces, and the second
21 number indicates the direction (1 = up, -1 = down).
22
23 "
24   doctitle = "Engraving ties manually"
25 } % begin verbatim
26 \relative c' {
27   <c e g>2 ~ <c e g>
28   \override TieColumn #'tie-configuration =
29     #'((0.0 . 1) (-2.0 . 1) (-4.0 . 1))
30   <c e g> ~ <c e g>
31 }