X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=Documentation%2Fsnippets%2Fchanging-the-number-of-augmentation-dots-per-note.ly;h=422a855169660aa427e5e5a1ef7e4e6ba0159b10;hb=750b714488c5af6eae22d07163bba8b554734ac6;hp=05717c441512c9a28d70608d8b75b22a4e7c9045;hpb=820bbcbc38981f5a1866f291cdf40042ea686db0;p=lilypond.git diff --git a/Documentation/snippets/changing-the-number-of-augmentation-dots-per-note.ly b/Documentation/snippets/changing-the-number-of-augmentation-dots-per-note.ly index 05717c4415..422a855169 100644 --- a/Documentation/snippets/changing-the-number-of-augmentation-dots-per-note.ly +++ b/Documentation/snippets/changing-the-number-of-augmentation-dots-per-note.ly @@ -1,36 +1,17 @@ %% DO NOT EDIT this file manually; it is automatically -%% generated from LSR http://lsr.dsi.unimi.it +%% generated from LSR http://lsr.di.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.14.2" +\version "2.18.0" \header { - lsrtags = "rhythms, expressive-marks" - -%% Translation of GIT committish: 6977ddc9a3b63ea810eaecb864269c7d847ccf98 - - texidoces = " -Este código muestra cómo cambiar la cantidad de puntillos de una nota. - -" - - doctitlees = "Modificar el número de puntillos de una nota" - - -%% Translation of GIT committish: 3b125956b08d27ef39cd48bfa3a2f1e1bb2ae8b4 - texidocfr = " -Voici comment modifier le nombre de points d'augmentation -affectés à une note en particulier. - -" - doctitlefr = "Spécification du nombre de points d'augmentation d'une note" - + lsrtags = "expressive-marks, rhythms" texidoc = " -This code demonstrates how to change the number of augmentation dots on -a single note. +The number of augmentation dots on a single note can be changed +indepently of the dots placed after the note. " doctitle = "Changing the number of augmentation dots per note" @@ -38,10 +19,10 @@ a single note. \relative c' { c4.. a16 r2 | - \override Dots #'dot-count = #4 + \override Dots.dot-count = #4 c4.. a16 r2 | - \override Dots #'dot-count = #0 + \override Dots.dot-count = #0 c4.. a16 r2 | - \revert Dots #'dot-count + \revert Dots.dot-count c4.. a16 r2 | }