]> git.donarmstrong.com Git - lilypond.git/blob - input/regression/collision-heads.ly
b65d6a3af5b37dcce668ac6b9dd0e08dcaf7f065
[lilypond.git] / input / regression / collision-heads.ly
1 \version "2.6.0"
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 \layout { 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 }