Jump to content

Changing the number of augmentation dots per note

From LilyPond wiki

The number of augmentation dots on a single note can be changed independently of the dots placed after the note.

\version "2.24.0"

\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 |
}