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