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