]> git.donarmstrong.com Git - lilypond.git/blob - input/regression/completion-heads-polyphony.ly
The grand \paper -> \layout, \bookpaper -> \paper renaming.
[lilypond.git] / input / regression / completion-heads-polyphony.ly
1 \version "2.3.22"
2 \header {
3
4     texidoc = "Completion heads are broken across bar lines. This was
5 intended as a debugging tool, but it can be used to ease music entry.
6 Completion heads are not fooled by polyphony with a different rhythm.
7 "
8
9 }
10
11 \score{ 
12         \context Staff  \relative c'' << 
13             { c2. c bes2 } \\
14             { c2. a8 g4 f4. g4 f  }
15         >>
16
17         \layout {
18                 \context{
19                         \Voice
20                         \remove "Note_heads_engraver"
21                         \consists "Completion_heads_engraver"
22                 }
23         }
24 }