]> git.donarmstrong.com Git - lilypond.git/blob - input/regression/chord-dots.ly
Avoid excessive number of dots in chords (#3179).
[lilypond.git] / input / regression / chord-dots.ly
1 \version "2.17.13"
2
3 \header {
4   texidoc =
5 "Property @code{chord-dots}: If set, remove dots which the
6 @code{DotColumn} algorithm would vertically position too far away from
7 note heads."
8 }
9
10 \layout{ ragged-right = ##t }
11
12
13 \relative c'' {
14   \override Score.DotColumn.chord-dots = ##f
15   << { <d e f g a>4. } \\
16      { <a, b c d e>4. } >>
17
18   \override Score.DotColumn.chord-dots = ##t
19   << { <d' e f g a>4. } \\
20      { <a, b c d e>4. } >>
21 }