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