]> git.donarmstrong.com Git - lilypond.git/blobdiff - Documentation/snippets/changing-the-tuplet-number.ly
CG: explicitly detail the correct values for git cl config
[lilypond.git] / Documentation / snippets / changing-the-tuplet-number.ly
index 4c0848a407fd29df327dd2dbf9de646fe9e4e1e2..134be353103627a18d8e20bb95e060650c356857 100644 (file)
@@ -4,7 +4,7 @@
 %% and then run scripts/auxiliar/makelsr.py
 %%
 %% This file is in the public domain.
-\version "2.14.2"
+\version "2.17.11"
 
 \header {
   lsrtags = "rhythms"
@@ -21,10 +21,10 @@ be printed, or the tuplet number may be suppressed altogether.
 
 
 \relative c'' {
-  \times 2/3 { c8 c c }
-  \times 2/3 { c8 c c }
-  \override TupletNumber #'text = #tuplet-number::calc-fraction-text
-  \times 2/3 { c8 c c }
-  \override TupletNumber #'stencil = ##f
-  \times 2/3 { c8 c c }
+  \tuplet 3/2 { c8 c c }
+  \tuplet 3/2 { c8 c c }
+  \override TupletNumber.text = #tuplet-number::calc-fraction-text
+  \tuplet 3/2 { c8 c c }
+  \override TupletNumber.stencil = ##f
+  \tuplet 3/2 { c8 c c }
 }