]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/entering-several-tuplets-using-only-one--times-command.ly
Doc: Update LSR.
[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: d2119a9e5e951c6ae850322f41444ac98d1ed492
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 %% Translation of GIT committish: 0a868be38a775ecb1ef935b079000cebbc64de40
28   texidocde = "
29 Die Eigenschaft @code{tupletSpannerDuration} bestimmt, wie lange jede
30 der N-tolen innerhalb der Klammern nach dem @code{\\times}-Befehl
31 dauert.  Auf diese Art können etwa viele Triolen nacheinander mit nur
32 einem @code{\\times}-Befehl geschrieben werden.
33
34 Im Beispiel sind zwei Triolen zu sehen, obwohl @code{\\times} nur
35 einmal geschrieben wurde.
36
37 Mehr Information über @code{make-moment} gibt es in \"Verwaltung der Zeiteinheiten\".
38
39 "
40   doctitlede = "Mehrere Triolen notieren aber nur einmal \\times benutzen"
41
42
43 %% Translation of GIT committish: 4da4307e396243a5a3bc33a0c2753acac92cb685
44   texidocfr = "
45 La propriété @code{tupletSpannerDuration} spécifie la longueur voulue de
46 chaque crochet.  Avec elle, vous pouvez faire plusieurs nolets en ne
47 tapant @code{\\times} qu'une fois, ce qui évite une longue saisie.
48
49 Dans l'exemple suivant, deux triolets sont imprimés avec une seule fonction
50 @code{\\times}.
51
52 Pour plus d'information sur @code{make-moment}, voir la section appropriée du manuel de notation.
53
54 "
55   doctitlefr = "Plusieurs triolets avec une seule commande \\times"
56
57   texidoc = "
58 The property @code{tupletSpannerDuration} sets how long each of the
59 tuplets contained within the brackets after @code{\\times} should last.
60 Many consecutive tuplets can then be placed within a single
61 @code{\\times} expression, thus saving typing.
62
63 In the example, two triplets are shown, while @code{\\times} was
64 entered only once.
65
66
67 Read the relevant sections of the Notation Reference for more
68 information about @code{ly:make-moment}.
69
70 "
71   doctitle = "Entering several tuplets using only one \\times command"
72 } % begin verbatim
73
74 \relative c' {
75   \time 2/4
76   \set tupletSpannerDuration = #(ly:make-moment 1 4)
77   \times 2/3 { c8 c c c c c }
78 }
79