]> git.donarmstrong.com Git - lilypond.git/blob - input/lsr/entering-several-tuplets-using-only-one--times-command.ly
Merge branch 'master' of ssh+git://hanwen@git.sv.gnu.org/srv/git/lilypond
[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 This example shows how to specify how long each of the tuplets
9 contained within the bracket after @code{\\times} should last.  Many
10 consecutive tuplets can then be contained within a single @code{\\times
11 @{ ... @}}, 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   \set tupletSpannerDuration = #(ly:make-moment 1 4)
23   \times 2/3 { c8 c c c c c }
24 }