X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=Documentation%2Fsnippets%2Fchanging-the-number-of-augmentation-dots-per-note.ly;fp=Documentation%2Fsnippets%2Fchanging-the-number-of-augmentation-dots-per-note.ly;h=38764d36f3f3ed3a4d939cb22275db211c2834fb;hb=0ac07f31e0f95fc18e5916ce756b9c746af7cc58;hp=6040c76cd19a0853966d13a5c40afc4b8b0dd246;hpb=2f1263e2ccdddcac2eb9f7d8ce2ed92867d3d160;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 6040c76cd1..38764d36f3 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 @@ -4,14 +4,14 @@ %% and then run scripts/auxiliar/makelsr.py %% %% This file is in the public domain. -\version "2.16.0" +\version "2.17.6" \header { 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" @@ -19,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 | }