]> git.donarmstrong.com Git - lilypond.git/blob - input/lsr/changing-the-tuplet-number.ly
Fix makelsr.py and update input/lsr
[lilypond.git] / input / lsr / changing-the-tuplet-number.ly
1 %% Do not edit this file; it is auto-generated from LSR http://lsr.dsi.unimi.it
2 %% This file is in the public domain.
3 \version "2.11.38"
4
5 \header {
6   lsrtags = "rhythms"
7
8   texidoc = "
9 By default, only the numerator of the tuplet number is printed over the
10 tuplet bracket, i.e., the denominator of the argument to the
11 @code{\\times} command. Alternatively, num:den of the tuplet number may
12 be printed, or the tuplet number may be suppressed altogether.
13
14 "
15   doctitle = "Changing the tuplet number"
16 } % begin verbatim
17 \relative c'' {
18   \times 2/3 { c8 c c } \times 2/3 { c8 c c }
19   \override TupletNumber #'text = #tuplet-number::calc-fraction-text
20   \times 2/3 { c8 c c }
21   \override TupletNumber #'stencil = ##f
22   \times 2/3 { c8 c c }
23 }