]> git.donarmstrong.com Git - lilypond.git/blob - input/regression/collision-heads.ly
8e776d82d0b37c41fe58121e0a222e017f20697c
[lilypond.git] / input / regression / collision-heads.ly
1 \version "2.3.17"
2 \header {
3     texidoc =
4
5     "If @code{merge-differently-headed} is enabled, then
6 open note heads may be merged with black noteheads, but only
7 if the black note heads are from 8th or shorter notes.
8 "
9     
10 }
11
12 \paper { raggedright= ##t }
13
14
15 \score {
16     \context Staff  \relative c'' <<
17         {
18             c2 c8 c4.
19             
20             \override Staff.NoteCollision  #'merge-differently-headed = ##t
21             c2 c8 c4.
22             c2
23         }\\
24         {
25             c8 c4. c2
26             
27             c8 c4. c2
28             c4
29         }
30     >>
31 }