]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/engraving-ties-manually.ly
Merge branch 'lilypond/translation' of ssh://git.sv.gnu.org/srv/git/lilypond into...
[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.31"
5
6 \header {
7   lsrtags = "rhythms"
8
9 %% Translation of GIT committish: 0b55335aeca1de539bf1125b717e0c21bb6fa31b
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
21 %% Translation of GIT committish: 0a868be38a775ecb1ef935b079000cebbc64de40
22 texidocde = "
23 Überbindungen können manuell gesetzt werden, indem man die
24 @code{tie-configuration}-Eigenschaft des @code{TieColumn}-Objekts
25 beeinflusst.  Die erste Zahl zeigt den Abstand von der Mitte in
26 Notensystemabständen an, die zweite Zahl zeigt die Richtung an (1 = nach oben,
27 -1 = nach unten).
28
29 "
30   doctitlede = "Bindebögen manuell setzen"
31
32
33
34 %% Translation of GIT committish: 4da4307e396243a5a3bc33a0c2753acac92cb685
35   texidocfr = "
36 Il est possible de graver manuellement les liaisons de tenue, en
37 modifiant la propriété @code{tie-configuration}.  Pour chaque paire, le
38 premier nombre indique la distance à la portée, en espaces de portée, et
39 le second la direction (1 pour haut, @minus{}1 pour bas).
40
41 "
42   doctitlefr = "Dessin à main levée de liaisons de tenue"
43
44   texidoc = "
45 Ties may be engraved manually by changing the @code{tie-configuration}
46 property of the @code{TieColumn} object. The first number indicates the
47 distance from the center of the staff in staff-spaces, and the second
48 number indicates the direction (1 = up, -1 = down).
49
50 "
51   doctitle = "Engraving ties manually"
52 } % begin verbatim
53
54 \relative c' {
55   <c e g>2 ~ <c e g>
56   \override TieColumn #'tie-configuration =
57     #'((0.0 . 1) (-2.0 . 1) (-4.0 . 1))
58   <c e g>2 ~ <c e g>
59 }
60