]> git.donarmstrong.com Git - lilypond.git/blobdiff - input/lsr/modifying-tuplet-bracket-length.ly
Merge branch 'stable'
[lilypond.git] / input / lsr / modifying-tuplet-bracket-length.ly
index b43cfc9ee3f9fd9c360f5849fbeddb86e832e634..d2ec9534be72557da8a311ddc4fcdadb2f18d9e6 100644 (file)
@@ -1,10 +1,11 @@
 %% Do not edit this file; it is auto-generated from LSR http://lsr.dsi.unimi.it
 %% This file is in the public domain.
-\version "2.11.38"
+\version "2.12.0"
 
 \header {
   lsrtags = "rhythms"
- texidoc = "
+
+  texidoc = "
 Tuplet brackets can be made to run to prefatory matter or the next
 note. Default tuplet brackets end at the right edge of the final note
 of the tuplet; full-length tuplet brackets extend farther to the right,
@@ -13,25 +14,22 @@ or to cover only the whitespace before the next item of notation, be
 that a clef, time signature, key signature, or another note.  The
 example shows how to switch tuplets to full length mode and how to
 modify what material they cover.
-" }
-% begin verbatim
-\new RhythmicStaff {
-
-      % Set tuplets to be extendable ..
-
-   \set tupletFullLength = ##t
 
-      % .. to cover all items up to the next note
+"
+  doctitle = "Modifying tuplet bracket length"
+} % begin verbatim
 
-   \set tupletFullLengthNote = ##t
-   \time 2/4
-   \times 2/3 { c4 c c }
-
-      % .. or to cover just whitespace
-
-   \set tupletFullLengthNote = ##f
-   \time 4/4
-   \times 4/5 { c4 c1 }
-   \time 3/4
-   c4
+\new RhythmicStaff {
+  % Set tuplets to be extendable...
+  \set tupletFullLength = ##t
+  % ...to cover all items up to the next note
+  \set tupletFullLengthNote = ##t
+  \time 2/4
+  \times 2/3 { c4 c c }
+  % ...or to cover just whitespace
+  \set tupletFullLengthNote = ##f
+  \time 4/4
+  \times 4/5 { c4 c1 }
+  \time 3/4
+  c2.
 }