LEFT | RIGHT |
1 %% DO NOT EDIT this file manually; it is automatically | 1 %% DO NOT EDIT this file manually; it is automatically |
2 %% generated from LSR http://lsr.dsi.unimi.it | 2 %% generated from LSR http://lsr.dsi.unimi.it |
3 %% Make any changes in LSR itself, or in Documentation/snippets/new/ , | 3 %% Make any changes in LSR itself, or in Documentation/snippets/new/ , |
4 %% and then run scripts/auxiliar/makelsr.py | 4 %% and then run scripts/auxiliar/makelsr.py |
5 %% | 5 %% |
6 %% This file is in the public domain. | 6 %% This file is in the public domain. |
7 \version "2.17.10" | 7 \version "2.17.11" |
8 | 8 |
9 \header { | 9 \header { |
10 lsrtags = "rhythms, syntax-and-expressions" | 10 lsrtags = "rhythms, syntax-and-expressions" |
11 | 11 |
12 texidoc = " | 12 texidoc = " |
13 The property @code{tupletSpannerDuration} sets how long each of the | 13 The property @code{tupletSpannerDuration} sets how long each of the |
14 tuplets contained within the brackets after @code{\\times} should last. | 14 tuplets contained within the brackets after @code{\\times} should last. |
15 Many consecutive tuplets can then be placed within a single | 15 Many consecutive tuplets can then be placed within a single |
16 @code{\\times} expression, thus saving typing. | 16 @code{\\times} expression, thus saving typing. |
17 | 17 |
18 In the example, two triplets are shown, while @code{\\times} was | 18 In the example, two triplets are shown, while @code{\\times} was |
19 entered only once. | 19 entered only once. |
20 | 20 |
21 | 21 |
22 Read the relevant sections of the Notation Reference for more | 22 Read the relevant sections of the Notation Reference for more |
23 information about @code{ly:make-moment}. | 23 information about @code{ly:make-moment}. |
24 | 24 |
25 " | 25 " |
26 doctitle = "Entering several tuplets using only one \\times command" | 26 doctitle = "Entering several tuplets using only one \\times command" |
27 } % begin verbatim | 27 } % begin verbatim |
28 | 28 |
29 | 29 |
30 \relative c' { | 30 \relative c' { |
31 \time 2/4 | 31 \time 2/4 |
32 \tupletSpan 4 | 32 \tupletSpan 4 |
33 \tuplet 3/2 { c8 c c c c c } | 33 \tuplet 3/2 { c8 c c c c c } |
34 } | 34 } |
LEFT | RIGHT |