]> git.donarmstrong.com Git - lilypond.git/blobdiff - input/lsr/entering-several-tuplets-using-only-one--times-command.ly
LSR: update.
[lilypond.git] / input / lsr / entering-several-tuplets-using-only-one--times-command.ly
index d22e4b7492cc3531b8e30809b1c3c9ed2d4b0e8a..19437456aee12a2c9ac816f83f68260a5a33f4ae 100644 (file)
@@ -4,11 +4,12 @@
 
 \header {
   lsrtags = "rhythms"
- texidoc = "
-This example shows how to specify how long each of the tuplets
-contained within the bracket after @code{\\times} should last.  Many
-consecutive tuplets can then be contained within a single @code{\\times
-@{ ... @}}, thus saving typing.
+
+  texidoc = "
+The property @code{tupletSpannerDuration} sets how long each of the
+tuplets contained within the brackets after @code{\\times} should last.
+Many consecutive tuplets can then be placed within a single
+@code{\\times} expression, thus saving typing.
 
 In the example, two triplets are shown, while @code{\\times} was
 entered only once.
@@ -16,9 +17,12 @@ entered only once.
 
 For more information about @code{make-moment}, see \"Time
 administration\". 
-" }
-% begin verbatim
-\relative {
+
+"
+  doctitle = "Entering several tuplets using only one \\times command"
+} % begin verbatim
+\relative c' {
+  \time 2/4
   \set tupletSpannerDuration = #(ly:make-moment 1 4)
   \times 2/3 { c8 c c c c c }
 }