]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/engraving-ties-manually.ly
Doc: Update LSR.
[lilypond.git] / Documentation / snippets / engraving-ties-manually.ly
1 %% Do not edit this file; it is automatically
2 %% generated from LSR http://lsr.dsi.unimi.it
3 %% This file is in the public domain.
4 \version "2.13.16"
5
6 \header {
7   lsrtags = "rhythms"
8
9 %% Translation of GIT committish: d2119a9e5e951c6ae850322f41444ac98d1ed492
10  doctitlees = "Grabado manual de las ligaduras"
11  texidoces = "
12 Se pueden grabar a mano las ligaduras modificando la propiedad
13 @code{tie-configuration} del objeto @code{TieColumn}. El primer número
14 indica la distancia a partir de la tercera línea del pentagrama en
15 espacios de pentagrama, y el segundo número indica la dirección (1 =
16 hacia arriba, -1 = hacia abajo).
17
18 "
19
20 %% Translation of GIT committish: 0a868be38a775ecb1ef935b079000cebbc64de40
21 texidocde = "
22 Überbindungen können manuell gesetzt werden, indem man die
23 @code{tie-configuration}-Eigenschaft des @code{TieColumn}-Objekts
24 beeinflusst.  Die erste Zahl zeigt den Abstand von der Mitte in
25 Notensystemabständen an, die zweite Zahl zeigt die Richtung an (1 = nach oben,
26 -1 = nach unten).
27
28 "
29   doctitlede = "Bindebögen manuell setzen"
30
31
32 %% Translation of GIT committish: 4da4307e396243a5a3bc33a0c2753acac92cb685
33   texidocfr = "
34 Il est possible de graver manuellement les liaisons de tenue, en
35 modifiant la propriété @code{tie-configuration}.  Pour chaque paire, le
36 premier nombre indique la distance à la portée, en espaces de portée, et
37 le second la direction (1 pour haut, @minus{}1 pour bas).
38
39 "
40   doctitlefr = "Dessin à main levée de liaisons de tenue"
41
42   texidoc = "
43 Ties may be engraved manually by changing the @code{tie-configuration}
44 property of the @code{TieColumn} object. The first number indicates the
45 distance from the center of the staff in staff-spaces, and the second
46 number indicates the direction (1 = up, -1 = down).
47
48 "
49   doctitle = "Engraving ties manually"
50 } % begin verbatim
51
52 \relative c' {
53   <c e g>2 ~ <c e g>
54   \override TieColumn #'tie-configuration =
55     #'((0.0 . 1) (-2.0 . 1) (-4.0 . 1))
56   <c e g>2 ~ <c e g>
57 }
58