]> git.donarmstrong.com Git - lilypond.git/blob - input/lsr/entering-several-tuplets-using-only-one--times-command.ly
Merge commit 'origin' into hairpin
[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  doctitlees = "Escribir varios grupos especiales usando una sola instrucción \\times"
9  texidoces = "
10 La propiedad @code{tupletSpannerDuration} establece cuánto debe durar
11 cada grupo de valoración especial contenido dentro del corchete que
12 aparece después de @code{\\times}.  Así, se pueden escribir muchos
13 tresillos seguidos dentro de una sola expresión @code{\\times},
14 ahorrando trabajo de teclado.
15
16 En el ejemplo se muestran dos tresillos, aunque se ha escrito
17 @code{\\times} una sola vez.
18
19
20 Para ver más inforamción sobre @code{make-moment}, véase
21 \"Administración del tiempo\".
22
23 "
24
25 %% Translation of GIT committish :<6ce7f350682dfa99af97929be1dec6b9f1cbc01a>
26   texidocde = "
27 Die Eigenschaft @code{tupletSpannerDuration} bestimmt, wie lange jede
28 der N-tolen innerhalb der Klammern nach dem @code{\\times}-Befehl
29 dauert.  Auf diese Art können etwa viele Triolen nacheinander mit nur
30 einem @code{\\times}-Befehl geschrieben werden.
31
32 Im Beispiel sind zwei Triolen zu sehen, obwohl @code{\\times} nur
33 einmal geschrieben wurde.
34
35 Mehr Information über @code{make-moment} gibt es in \"Verwaltung der Zeiteinheiten\". 
36
37 "
38   doctitlede = "Mehrere Triolen notieren, aber nur einmal \\times benutzen"
39
40   texidoc = "
41 The property @code{tupletSpannerDuration} sets how long each of the
42 tuplets contained within the brackets after @code{\\times} should last.
43 Many consecutive tuplets can then be placed within a single
44 @code{\\times} expression, thus saving typing.
45
46 In the example, two triplets are shown, while @code{\\times} was
47 entered only once.
48
49
50 For more information about @code{make-moment}, see \"Time
51 administration\". 
52
53 "
54   doctitle = "Entering several tuplets using only one \\times command"
55 } % begin verbatim
56
57 \relative c' {
58   \time 2/4
59   \set tupletSpannerDuration = #(ly:make-moment 1 4)
60   \times 2/3 { c8 c c c c c }
61 }