Docs: Snippets: Rename new snippets so titles match file names.
[lilypond/mpolesky.git] / Documentation / snippets / new / changing-the-number-of-augmentation-dots-per-note.ly
blob8e183fd98609241ca16f707162d35a29190230d5
1 \version "2.13.26"
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"
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 |