]> git.donarmstrong.com Git - lilypond.git/blob - input/lsr/changing-the-tuplet-number.ly
Merge master into nested-bookparts
[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.62"
4
5 \header {
6   lsrtags = "rhythms"
7
8  doctitlees = "Cambiar el número del grupo especial"
9  texidoces = "
10
11 De forma predeterminada sólo se imprime el numerador del grupo
12 especial sobre el corchete de grupo, es decir, el denominador del
13 argumento de la instrucción @code{\\times}. De forma alternativa, se
14 puede imprimr un quebrado en la forma numerador:denominador del número
15 del grupo, o eliminar el número.
16
17 "
18
19   texidoc = "
20 By default, only the numerator of the tuplet number is printed over the
21 tuplet bracket, i.e., the denominator of the argument to the
22 @code{\\times} command. Alternatively, num:den of the tuplet number may
23 be printed, or the tuplet number may be suppressed altogether.
24
25 "
26   doctitle = "Changing the tuplet number"
27 } % begin verbatim
28 \relative c'' {
29   \times 2/3 { c8 c c } \times 2/3 { c8 c c }
30   \override TupletNumber #'text = #tuplet-number::calc-fraction-text
31   \times 2/3 { c8 c c }
32   \override TupletNumber #'stencil = ##f
33   \times 2/3 { c8 c c }
34 }