X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=input%2Flsr%2Fmodifying-tuplet-bracket-length.ly;h=0631eb868de0096a9309ade1fb936c05b2b2b390;hb=378bccdec5364a5c4364c75ed9b34df2f8a6f49b;hp=b43cfc9ee3f9fd9c360f5849fbeddb86e832e634;hpb=2a07e2ea1924abec1b70e2150e698e5792ae1687;p=lilypond.git diff --git a/input/lsr/modifying-tuplet-bracket-length.ly b/input/lsr/modifying-tuplet-bracket-length.ly index b43cfc9ee3..0631eb868d 100644 --- a/input/lsr/modifying-tuplet-bracket-length.ly +++ b/input/lsr/modifying-tuplet-bracket-length.ly @@ -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.11.51" \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,21 @@ 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 - - \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 +" + doctitle = "Modifying tuplet bracket length" +} % begin verbatim +\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. }