X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=Documentation%2Fsnippets%2Fnew%2Fchanging-the-number-of-augmentation-dots-per-note.ly;fp=Documentation%2Fsnippets%2Fnew%2Fchanging-the-number-of-augmentation-dots-per-note.ly;h=8d7a6c16f55b3c244f200cc54886c3f6cdbd9ee7;hb=941dff9d2a67080e0dd8474f1e70f0c72ace6424;hp=0000000000000000000000000000000000000000;hpb=5a22d6233a39d3164e1ca043244794c268be4ad0;p=lilypond.git diff --git a/Documentation/snippets/new/changing-the-number-of-augmentation-dots-per-note.ly b/Documentation/snippets/new/changing-the-number-of-augmentation-dots-per-note.ly new file mode 100644 index 0000000000..8d7a6c16f5 --- /dev/null +++ b/Documentation/snippets/new/changing-the-number-of-augmentation-dots-per-note.ly @@ -0,0 +1,17 @@ +\version "2.14.0" +\header { + 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" +} + +\relative c' { + c4.. a16 r2 | + \override Dots #'dot-count = #4 + c4.. a16 r2 | + \override Dots #'dot-count = #0 + c4.. a16 r2 | + \revert Dots #'dot-count + c4.. a16 r2 | +}