]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/non-default-tuplet-numbers.ly
Doc: run makelsr locally
[lilypond.git] / Documentation / snippets / non-default-tuplet-numbers.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.2"
8
9 \header {
10   lsrtags = "rhythms"
11
12 %% Translation of GIT committish: b482c3e5b56c3841a88d957e0ca12964bd3e64fa
13   texidoces = "
14 LilyPond también proporciona funciones de formato para imprimir
15 números de grupo especial diferentes a la propia fracción, así
16 como para añadir una figura al número o a la fracción de la
17 agrupación.
18
19 "
20
21   doctitlees = "Números de agrupación especial distintos a los predeterminados"
22
23
24 %% Translation of GIT committish: 0a868be38a775ecb1ef935b079000cebbc64de40
25 texidocde = "
26 LilyPond stellt auch Formatierungsfunktionen zur Verfügung, mit denen
27 N-tolennummern gesetzt werden können, die sich von dem eigentlichen Bruch
28 unterscheiden.  Auch ein Notenwert kann zu Nenner oder Zähler des Bruchs
29 hinzugefügt werden.
30 "
31   doctitlede = "Nicht-standard-N-tolennummern"
32
33
34 %% Translation of GIT committish: 015b8e65e5e9a74cea1618b597402b5b74f89b89
35   texidocfr = "
36 LilyPond sait aussi gérer des nolets dont le chiffrage imprimé ne
37 correspond pas exactement à la fraction de mesure à laquelle ils se
38 réfèrent, tout comme ceux auxquels une valeur de note vient en complément
39 au chiffre.
40 "
41   doctitlefr = "Nolets au chiffrage inhabituel"
42
43   texidoc = "
44 LilyPond also provides formatting functions to print tuplet numbers
45 different than the actual fraction, as well as to append a note value
46 to the tuplet number or tuplet fraction.
47
48 "
49   doctitle = "Non-default tuplet numbers"
50 } % begin verbatim
51
52 \relative c'' {
53   \once \override TupletNumber #'text =
54     #(tuplet-number::non-default-tuplet-denominator-text 7)
55   \times 2/3  { c4. c4. c4. c4. }
56   \once \override TupletNumber #'text =
57     #(tuplet-number::non-default-tuplet-fraction-text 12 7)
58   \times 2/3  { c4. c4. c4. c4. }
59   \once \override TupletNumber #'text =
60     #(tuplet-number::append-note-wrapper
61       (tuplet-number::non-default-tuplet-fraction-text 12 7) "8")
62   \times 2/3  { c4. c4. c4. c4. }
63
64   \once \override TupletNumber #'text =
65     #(tuplet-number::append-note-wrapper
66       tuplet-number::calc-denominator-text "4")
67   \times 2/3  { c8 c8 c8 c8 c8 c8 }
68   \once \override TupletNumber #'text =
69     #(tuplet-number::append-note-wrapper
70       tuplet-number::calc-fraction-text "4")
71   \times 2/3  { c8 c8 c8 c8 c8 c8 }
72
73   \once \override TupletNumber #'text =
74     #(tuplet-number::fraction-with-notes "4." "8")
75   \times 2/3  { c4. c4. c4. c4. }
76   \once \override TupletNumber #'text =
77     #(tuplet-number::non-default-fraction-with-notes 12 "8" 4 "4")
78   \times 2/3  { c4. c4. c4. c4. }
79 }