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