]> git.donarmstrong.com Git - lilypond.git/blobdiff - Documentation/snippets/modifying-tuplet-bracket-length.ly
Merge remote-tracking branch 'origin/translation'
[lilypond.git] / Documentation / snippets / modifying-tuplet-bracket-length.ly
index 3a7f1d4294da4953662e32e9246181adaa1c70e2..f19f6bc318e0c8922cf079b8fbf223f7fec960c0 100644 (file)
@@ -1,9 +1,14 @@
-%% 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.13.1"
+% 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
@@ -19,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.
 }
-