X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=Documentation%2Fsnippets%2Fchanging-the-number-of-augmentation-dots-per-note.ly;h=0719c560b1a62836e5c91dce7937397bb6bb91ad;hb=13da8b27aabc5d5a752d00ed1e2b99ad20f0f264;hp=7d4e7dd5387f4649f465aa62e581caea551bade7;hpb=f47aeae9323112cb359dcb0a08fed8d43c4c26a4;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 7d4e7dd538..0719c560b1 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,22 +1,28 @@ -% 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.26 -\version "2.13.26" +%% 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 { - lsrtags = "rhythms,expressive-marks" - texidoc = "This code demonstrates how to change the number of -augmentation dots on a single note." + lsrtags = "expressive-marks, rhythms" + + 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 | }