]> git.donarmstrong.com Git - lilypond.git/blobdiff - Documentation/snippets/non-default-tuplet-numbers.ly
Rerun scripts/auxiliar/update-with-convert-ly.sh
[lilypond.git] / Documentation / snippets / non-default-tuplet-numbers.ly
index dbc999cfa1c37eea64fca72301ebf6d58d85c2ed..64aafafb706615d4152da0d3f060c671ceeca937 100644 (file)
@@ -1,77 +1,48 @@
-% Do not edit this file; it is automatically
-% generated from Documentation/snippets/new
-% This file is in the public domain.
-%% Note: this file works from version 2.13.1
-\version "2.13.10"
+%% DO NOT EDIT this file manually; it is automatically
+%% generated from LSR http://lsr.dsi.unimi.it
+%% Make any changes in LSR itself, or in Documentation/snippets/new/ ,
+%% and then run scripts/auxiliar/makelsr.py
+%%
+%% This file is in the public domain.
+\version "2.17.6"
 
 \header {
-%% Translation of GIT committish: 5cab62e8738ff02eead438042743116391f306f5
-  texidoces = "
-LilyPond también proporciona funciones de formato para imprimir
-números de grupo especial diferentes a la propia fracción, así
-como para añadir una figura al número o a la fracción de la
-agrupación.
-
-"
-
-  doctitlees = "Números de agrupación especial distintos a los predeterminados"
-
-
-%% Translation of GIT committish: d96023d8792c8af202c7cb8508010c0d3648899d
-texidocde = "
-LilyPond stellt auch Formatierungsfunktionen zur Verfügung, mit denen
-N-tolennummern gesetzt werden können, die sich von dem eigentlichen Bruch
-unterscheiden.  Auch ein Notenwert kann zu Nenner oder Zähler des Bruchs
-hinzugefügt werden.
-"
-  doctitlede = "Nicht-standard-N-tolennummern"
-
-
-%% Translation of GIT committish: fa7695ea860d7ab2db86581dd5f8bc4f413f6705
-  texidocfr = "
-LilyPond sait aussi gérer des nolets dont le chiffrage imprimé ne
-correspond pas exactement à la fraction de mesure à laquelle ils se
-réfèrent, tout comme ceux auxquels une valeur de note vient en complément
-au chiffre.
-"
-  doctitlefr = "Nolets au chiffrage inhabituel"
-
   lsrtags = "rhythms"
 
   texidoc = "
-LilyPond also provides formatting functions to print tuplet numbers different
-than the actual fraction, as well as to append a note value to the tuplet
-number or tuplet fraction.
+LilyPond also provides formatting functions to print tuplet numbers
+different than the actual fraction, as well as to append a note value
+to the tuplet number or tuplet fraction.
+
 "
   doctitle = "Non-default tuplet numbers"
 } % begin verbatim
 
-
 \relative c'' {
-  \once \override TupletNumber #'text =
+  \once \override TupletNumber.text =
     #(tuplet-number::non-default-tuplet-denominator-text 7)
   \times 2/3  { c4. c4. c4. c4. }
-  \once \override TupletNumber #'text =
+  \once \override TupletNumber.text =
     #(tuplet-number::non-default-tuplet-fraction-text 12 7)
   \times 2/3  { c4. c4. c4. c4. }
-  \once \override TupletNumber #'text =
+  \once \override TupletNumber.text =
     #(tuplet-number::append-note-wrapper
       (tuplet-number::non-default-tuplet-fraction-text 12 7) "8")
   \times 2/3  { c4. c4. c4. c4. }
 
-  \once \override TupletNumber #'text =
+  \once \override TupletNumber.text =
     #(tuplet-number::append-note-wrapper
       tuplet-number::calc-denominator-text "4")
   \times 2/3  { c8 c8 c8 c8 c8 c8 }
-  \once \override TupletNumber #'text =
+  \once \override TupletNumber.text =
     #(tuplet-number::append-note-wrapper
       tuplet-number::calc-fraction-text "4")
   \times 2/3  { c8 c8 c8 c8 c8 c8 }
 
-  \once \override TupletNumber #'text =
+  \once \override TupletNumber.text =
     #(tuplet-number::fraction-with-notes "4." "8")
   \times 2/3  { c4. c4. c4. c4. }
-  \once \override TupletNumber #'text =
+  \once \override TupletNumber.text =
     #(tuplet-number::non-default-fraction-with-notes 12 "8" 4 "4")
   \times 2/3  { c4. c4. c4. c4. }
 }