X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=input%2Flsr%2Fmodifying-tuplet-bracket-length.ly;h=ef3d8609bc2a8412ee4a0b28324d489d54903cad;hb=ee6ef908f4ac0ed2b6edcd003810ca77eda9ead5;hp=b43cfc9ee3f9fd9c360f5849fbeddb86e832e634;hpb=334e0c7b7466162cfd1763f3166c6070b9bf4caa;p=lilypond.git diff --git a/input/lsr/modifying-tuplet-bracket-length.ly b/input/lsr/modifying-tuplet-bracket-length.ly index b43cfc9ee3..ef3d8609bc 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.64" \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. }