]> git.donarmstrong.com Git - lilypond.git/blob - input/lsr/entering-several-tuplets-using-only-one--times-command.ly
Merge branch 'master' into nested-bookparts
[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.11.62"
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   texidocde = "
26 Die Eigenschaft @code{tupletSpannerDuration} bestimmt, wie lange jede
27 der N-tolen innerhalb der Klammern nach dem @code{\\times}-Befehl
28 dauert.  Auf diese Art können etwa viele Triolen nacheinander mit nur
29 einem @code{\\times}-Befehl geschrieben werden.
30
31 Im Beispiel sind zwei Triolen zu sehen, obwohl @code{\\times} nur
32 einmal geschrieben wurde.
33
34 Mehr Information über @code{make-moment} gibt es in \"Verwaltung der Zeiteinheiten\". 
35
36 "
37   doctitlede = "Mehrere Triolen notieren, aber nur einmal \\times benutzen"
38
39   texidoc = "
40 The property @code{tupletSpannerDuration} sets how long each of the
41 tuplets contained within the brackets after @code{\\times} should last.
42 Many consecutive tuplets can then be placed within a single
43 @code{\\times} expression, thus saving typing.
44
45 In the example, two triplets are shown, while @code{\\times} was
46 entered only once.
47
48
49 For more information about @code{make-moment}, see \"Time
50 administration\". 
51
52 "
53   doctitle = "Entering several tuplets using only one \\times command"
54 } % begin verbatim
55
56 \relative c' {
57   \time 2/4
58   \set tupletSpannerDuration = #(ly:make-moment 1 4)
59   \times 2/3 { c8 c c c c c }
60 }