]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/new/changing-the-number-of-augmentation-dots-per-note.ly
Docs: run convert-ly for 2.14.0.
[lilypond.git] / Documentation / snippets / new / changing-the-number-of-augmentation-dots-per-note.ly
1 \version "2.14.0"
2 \header {
3   lsrtags = "rhythms,expressive-marks"
4   texidoc = "This code demonstrates how to change the number of
5 augmentation dots on a single note."
6   doctitle = "Changing the number of augmentation dots per note"
7 }
8
9 \relative c' {
10   c4.. a16 r2 |
11   \override Dots #'dot-count = #4
12   c4.. a16 r2 |
13   \override Dots #'dot-count = #0
14   c4.. a16 r2 |
15   \revert Dots #'dot-count
16   c4.. a16 r2 |
17 }