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