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