]> git.donarmstrong.com Git - lilypond.git/blob - input/lsr/changing-the-tuplet-number.ly
Merge branch 'master' of ssh+git://git.sv.gnu.org/srv/git/lilypond
[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  texidoc = "
8 By default, only the numerator of the tuplet number is printed over the
9 tuplet bracket, i.e. the denominator of the argument to the
10 @code{\\times} command. Alternatively, num:den of the tuplet number may
11 be printed, or the tuplet number may be suppressed altogether.
12 " }
13 % begin verbatim
14 \relative c'' {
15   \times 2/3 { c8 c c } \times 2/3 { c8 c c }
16   \override TupletNumber #'text = #tuplet-number::calc-fraction-text
17   \times 2/3 { c8 c c }
18   \override TupletNumber #'stencil = ##f
19   \times 2/3 { c8 c c }
20 }