LEFT | RIGHT |
1 %% DO NOT EDIT this file manually; it is automatically | 1 %% DO NOT EDIT this file manually; it is automatically |
2 %% generated from LSR http://lsr.dsi.unimi.it | 2 %% generated from LSR http://lsr.dsi.unimi.it |
3 %% Make any changes in LSR itself, or in Documentation/snippets/new/ , | 3 %% Make any changes in LSR itself, or in Documentation/snippets/new/ , |
4 %% and then run scripts/auxiliar/makelsr.py | 4 %% and then run scripts/auxiliar/makelsr.py |
5 %% | 5 %% |
6 %% This file is in the public domain. | 6 %% This file is in the public domain. |
7 \version "2.17.10" | 7 \version "2.17.11" |
8 | 8 |
9 \header { | 9 \header { |
10 lsrtags = "rhythms" | 10 lsrtags = "rhythms" |
11 | 11 |
12 texidoc = " | 12 texidoc = " |
13 By default, only the numerator of the tuplet number is printed over the | 13 By default, only the numerator of the tuplet number is printed over the |
14 tuplet bracket, i.e., the denominator of the argument to the | 14 tuplet bracket, i.e., the denominator of the argument to the |
15 @code{\\times} command. Alternatively, num:den of the tuplet number may | 15 @code{\\times} command. Alternatively, num:den of the tuplet number may |
16 be printed, or the tuplet number may be suppressed altogether. | 16 be printed, or the tuplet number may be suppressed altogether. |
17 | 17 |
18 " | 18 " |
19 doctitle = "Changing the tuplet number" | 19 doctitle = "Changing the tuplet number" |
20 } % begin verbatim | 20 } % begin verbatim |
21 | 21 |
22 | 22 |
23 \relative c'' { | 23 \relative c'' { |
24 \tuplet 3/2 { c8 c c } | 24 \tuplet 3/2 { c8 c c } |
25 \tuplet 3/2 { c8 c c } | 25 \tuplet 3/2 { c8 c c } |
26 \override TupletNumber.text = #tuplet-number::calc-fraction-text | 26 \override TupletNumber.text = #tuplet-number::calc-fraction-text |
27 \tuplet 3/2 { c8 c c } | 27 \tuplet 3/2 { c8 c c } |
28 \override TupletNumber.stencil = ##f | 28 \override TupletNumber.stencil = ##f |
29 \tuplet 3/2 { c8 c c } | 29 \tuplet 3/2 { c8 c c } |
30 } | 30 } |
LEFT | RIGHT |