X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=Documentation%2Fsnippets%2Fmodifying-tuplet-bracket-length.ly;h=f19f6bc318e0c8922cf079b8fbf223f7fec960c0;hb=e7aa6c445f463844dbaa52d38ea4aac2882b5601;hp=c4f0d2349886c4b5c0d0d1322bf294b6cff7724d;hpb=9158bc17904d4dd930a1f776cfe3226f1ad84092;p=lilypond.git diff --git a/Documentation/snippets/modifying-tuplet-bracket-length.ly b/Documentation/snippets/modifying-tuplet-bracket-length.ly index c4f0d23498..f19f6bc318 100644 --- a/Documentation/snippets/modifying-tuplet-bracket-length.ly +++ b/Documentation/snippets/modifying-tuplet-bracket-length.ly @@ -1,10 +1,14 @@ -%% Do not edit this file; it is automatically -%% generated from LSR http://lsr.dsi.unimi.it -%% This file is in the public domain. -\version "2.13.31" +% DO NOT EDIT this file manually; it is automatically +% generated from Documentation/snippets/new +% Make any changes in Documentation/snippets/new/ +% and then run scripts/auxiliar/makelsr.py +% +% This file is in the public domain. +%% Note: this file works from version 2.19.0 +\version "2.19.0" \header { - lsrtags = "rhythms" + lsrtags = "really-simple, rhythms" texidoc = " Tuplet brackets can be made to run to prefatory matter or the next @@ -20,18 +24,18 @@ modify what material they cover. 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 } + \tuplet 3/2 { c4 4 4 } % ...or to cover just whitespace \set tupletFullLengthNote = ##f \time 4/4 - \times 4/5 { c4 c1 } + \tuplet 5/4 { 4 1 } \time 3/4 - c2. + 2. } -