]> git.donarmstrong.com Git - lilypond.git/blob - input/regression/collision-heads.ly
* scm/bass-figure.scm (make-bass-figure-markup): add
[lilypond.git] / input / regression / collision-heads.ly
1 \version "1.7.18"
2 \header {
3     texidoc =
4
5     "If @code{merge-differently-headed}, 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     \paper { raggedright= ##t }
12
13
14 \score { \notes \context Staff\relative c''<
15 \context Voice = VA {
16     \voiceOne
17     c2 c8 c4.
18     
19     \property Staff.NoteCollision \override #'merge-differently-headed = ##t
20     c2
21     c8 c4.
22     c2
23 }
24 \context Voice = VB {
25     \voiceTwo
26     c8 c4.
27     c2
28     c8 c4.
29     c2
30     c4
31 }
32     >
33          }