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=70df07e1be5c44b9489a6983b37ceec08145af19;hp=ba10322614ada11014e997f3adf55a7642d19d37;hpb=3b125956b08d27ef39cd48bfa3a2f1e1bb2ae8b4;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 ba10322614..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,44 +1,28 @@ -% DO NOT EDIT this file manually; it is automatically -% generated from Documentation/snippets/new -% Make any changes in Documentation/snippets/new/ -% and then run scripts/auxiliar/makelsr.py -% -% This file is in the public domain. -%% Note: this file works from version 2.14.0 -\version "2.14.0" -\header { -%% 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" +%% DO NOT EDIT this file manually; it is automatically +%% 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.18.0" +\header { + lsrtags = "expressive-marks, rhythms" -%% Translation of GIT committish: 190a067275167c6dc9dd0afef683d14d392b7033 - texidocfr = " -Voici comment modifier le nombre de points d'augmentation -affectés à une note en particulier. + texidoc = " +The number of augmentation dots on a single note can be changed +indepently of the dots placed after the note. " - doctitlefr = "Spécification du nombre de points d'augmentation d'une note" - - - lsrtags = "rhythms,expressive-marks" - texidoc = "This code demonstrates how to change the number of -augmentation dots on a single note." doctitle = "Changing the number of augmentation dots per note" } % begin verbatim - \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 | }