]> git.donarmstrong.com Git - lilypond.git/blob - input/lsr/entering-several-tuplets-using-only-one--times-command.ly
Merge branch 'master' of ssh://kainhofer@git.sv.gnu.org/srv/git/lilypond into dev...
[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.38"
4
5 \header {
6   lsrtags = "rhythms"
7  texidoc = "
8 The property @code{tupletSpannerDuration} sets how long each of the
9 tuplets contained within the brackets after @code{\\times} should last.
10 Many consecutive tuplets can then be placed within a single
11 @code{\\times @{ ... @}} expression, thus saving typing.
12
13 In the example, two triplets are shown, while @code{\\times} was
14 entered only once.
15
16
17 For more information about @code{make-moment}, see \"Time
18 administration\". 
19 " }
20 % begin verbatim
21 \relative {
22   \time 2/4
23   \set tupletSpannerDuration = #(ly:make-moment 1 4)
24   \times 2/3 { c8 c c c c c }
25 }