Jump to content

Preventing double augmentation dots with identical notes in chords

From LilyPond wiki
Revision as of 22:41, 26 October 2025 by Jean Abou Samra (talk | contribs) (Import snippet from LSR)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

Sometimes, a dotted chord may contain the same note twice, in which case two augmentation dots will be printed (accordingly to recommended engraving practice). Here is how to prevent this behavior from appearing, in cases where it would be unwanted.

\version "2.24.0"

{
  %% Only available since 2.19.0
  <d' d'>4.
  \once \override Staff.DotColumn.chord-dots-limit = #1
  <d' d'> c'4
}