]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/entering-several-tuplets-using-only-one--times-command.ly
bdbf4caae4f1f18b5bff09e326e322b5115d03ea
[lilypond.git] / Documentation / snippets / entering-several-tuplets-using-only-one--times-command.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: 00ef2ac3dd16e21c9ffdffaa4d6d043a3f1a76e6
10  doctitlees = "Escribir varios grupos especiales usando una sola instrucción \\times"
11  texidoces = "
12 La propiedad @code{tupletSpannerDuration} establece cuánto debe durar
13 cada grupo de valoración especial contenido dentro del corchete que
14 aparece después de @code{\\times}.  Así, se pueden escribir muchos
15 tresillos seguidos dentro de una sola expresión @code{\\times},
16 ahorrando trabajo de teclado.
17
18 En el ejemplo se muestran dos tresillos, aunque se ha escrito
19 @code{\\times} una sola vez.
20
21
22 Para ver más inforamción sobre @code{make-moment}, véase la sección
23 correspondiente del manual de Referencia de la Notación.
24
25 "
26
27
28 %% Translation of GIT committish: d96023d8792c8af202c7cb8508010c0d3648899d
29   texidocde = "
30 Die Eigenschaft @code{tupletSpannerDuration} bestimmt, wie lange jede
31 der N-tolen innerhalb der Klammern nach dem @code{\\times}-Befehl
32 dauert.  Auf diese Art können etwa viele Triolen nacheinander mit nur
33 einem @code{\\times}-Befehl geschrieben werden.
34
35 Im Beispiel sind zwei Triolen zu sehen, obwohl @code{\\times} nur
36 einmal geschrieben wurde.
37
38 Mehr Information über @code{make-moment} gibt es in \"Verwaltung der Zeiteinheiten\".
39
40 "
41   doctitlede = "Mehrere Triolen notieren aber nur einmal \\times benutzen"
42
43
44
45 %% Translation of GIT committish: e71f19ad847d3e94ac89750f34de8b6bb28611df
46   texidocfr = "
47 La propriété @code{tupletSpannerDuration} spécifie la longueur voulue de
48 chaque crochet.  Avec elle, vous pouvez faire plusieurs nolets en ne
49 tapant @code{\\times} qu'une fois, ce qui évite une longue saisie.
50
51 Dans l'exemple suivant, deux triolets sont imprimés avec une seule fonction
52 @code{\\times}.
53
54 Pour plus d'information sur @code{make-moment}, voir la section appropriée du manuel de notation.
55
56 "
57   doctitlefr = "Plusieurs triolets avec une seule commande \\times"
58
59   texidoc = "
60 The property @code{tupletSpannerDuration} sets how long each of the
61 tuplets contained within the brackets after @code{\\times} should last.
62 Many consecutive tuplets can then be placed within a single
63 @code{\\times} expression, thus saving typing.
64
65 In the example, two triplets are shown, while @code{\\times} was
66 entered only once.
67
68
69 Read the relevant sections of the Notation Reference for more
70 information about @code{ly:make-moment}.
71
72 "
73   doctitle = "Entering several tuplets using only one \\times command"
74 } % begin verbatim
75
76 \relative c' {
77   \time 2/4
78   \set tupletSpannerDuration = #(ly:make-moment 1 4)
79   \times 2/3 { c8 c c c c c }
80 }
81