]> git.donarmstrong.com Git - lilypond.git/blob - input/lsr/entering-several-tuplets-using-only-one--times-command.ly
Merge 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   texidoc = "
26 The property @code{tupletSpannerDuration} sets how long each of the
27 tuplets contained within the brackets after @code{\\times} should last.
28 Many consecutive tuplets can then be placed within a single
29 @code{\\times} expression, thus saving typing.
30
31 In the example, two triplets are shown, while @code{\\times} was
32 entered only once.
33
34
35 For more information about @code{make-moment}, see \"Time
36 administration\". 
37
38 "
39   doctitle = "Entering several tuplets using only one \\times command"
40 } % begin verbatim
41 \relative c' {
42   \time 2/4
43   \set tupletSpannerDuration = #(ly:make-moment 1 4)
44   \times 2/3 { c8 c c c c c }
45 }