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