]> git.donarmstrong.com Git - lilypond.git/blobdiff - Documentation/snippets/modifying-tuplet-bracket-length.ly
Add '-dcrop' option to ps and svg backends
[lilypond.git] / Documentation / snippets / modifying-tuplet-bracket-length.ly
index 03fe1e85209593532ed17f374eb43e5af0f629e4..f19f6bc318e0c8922cf079b8fbf223f7fec960c0 100644 (file)
@@ -1,13 +1,14 @@
-%% DO NOT EDIT this file manually; it is automatically
-%% generated from LSR http://lsr.dsi.unimi.it
-%% Make any changes in LSR itself, or in Documentation/snippets/new/ ,
-%% and then run scripts/auxiliar/makelsr.py
-%%
-%% This file is in the public domain.
-\version "2.12.2"
+% 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
@@ -23,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.
 }
-