]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/changing-the-tuplet-number.ly
Imported Upstream version 2.14.2
[lilypond.git] / Documentation / snippets / changing-the-tuplet-number.ly
1 %% DO NOT EDIT this file manually; it is automatically
2 %% generated from LSR http://lsr.dsi.unimi.it
3 %% Make any changes in LSR itself, or in Documentation/snippets/new/ ,
4 %% and then run scripts/auxiliar/makelsr.py
5 %%
6 %% This file is in the public domain.
7 \version "2.14.0"
8
9 \header {
10   lsrtags = "rhythms"
11
12 %% Translation of GIT committish: 70f5f30161f7b804a681cd080274bfcdc9f4fe8c
13  doctitlees = "Cambiar el número del grupo especial"
14  texidoces = "
15
16 De forma predeterminada sólo se imprime el numerador del grupo
17 especial sobre el corchete de grupo, es decir, el denominador del
18 argumento de la instrucción @code{\\times}. De forma alternativa, se
19 puede imprimr un quebrado en la forma numerador:denominador del número
20 del grupo, o eliminar el número.
21
22 "
23
24
25 %% Translation of GIT committish: 0a868be38a775ecb1ef935b079000cebbc64de40
26 texidocde = "
27 Standardmäßig wird nur der Zähler des N-tolen-Bruchs über der Klammer
28 dargestellt, wie er dem @code{\\times}-Befehl übergeben wird.
29 Man kann aber auch Zähler/Nenner ausgeben lassen, oder die Zahl
30 vollständig unterdrücken.
31
32 "
33   doctitlede = "Die Zahl der N-tole verändern"
34
35
36
37 %% Translation of GIT committish: 4da4307e396243a5a3bc33a0c2753acac92cb685
38   texidocfr = "
39 L'apparence du chiffre est déterminée par la propriété @code{text} dans
40 @code{TupletNumber}.  La valeur par défaut imprime seulement le
41 dénominateur, mais si elle est définie par la fonction
42 @code{tuplet-number::calc-fraction-text}, la fraction entière
43 @var{num}:@var{den} sera imprimée à la place.
44
45 "
46   doctitlefr = "Modifier l'apparence du chiffre de nolet"
47
48   texidoc = "
49 By default, only the numerator of the tuplet number is printed over the
50 tuplet bracket, i.e., the denominator of the argument to the
51 @code{\\times} command. Alternatively, num:den of the tuplet number may
52 be printed, or the tuplet number may be suppressed altogether.
53
54 "
55   doctitle = "Changing the tuplet number"
56 } % begin verbatim
57
58 \relative c'' {
59   \times 2/3 { c8 c c }
60   \times 2/3 { c8 c c }
61   \override TupletNumber #'text = #tuplet-number::calc-fraction-text
62   \times 2/3 { c8 c c }
63   \override TupletNumber #'stencil = ##f
64   \times 2/3 { c8 c c }
65 }
66