]> git.donarmstrong.com Git - lilypond.git/blob - input/regression/collision-heads.ly
* scripts/lilypond-book.py (do_file): do not overwrite input file.
[lilypond.git] / input / regression / collision-heads.ly
1 \version "2.1.26"
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 \notes \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 }