]> git.donarmstrong.com Git - lilypond.git/blob - input/regression/completion-heads.ly
fc0c5f7df3c7d26a678b40fd8d793bd8de68e6eb
[lilypond.git] / input / regression / completion-heads.ly
1 \version "2.6.0"
2
3 \header{
4 texidoc="
5
6 If the @code{Note_heads_engraver} is replaced by the @code{Completion_heads_engraver}, notes that cross bar lines are split into tied notes.
7
8 "
9 }
10
11 \layout { raggedright= ##t }
12
13
14
15 \score{
16   \relative c'{
17   \time 2/4
18
19   c2. c8 d4 e f g a b c2.. b8 a g16 f4 e d c8. c2 
20   }
21   \layout{
22     \context{
23       \Voice
24       \remove "Note_heads_engraver"
25       \consists "Completion_heads_engraver"
26     }
27   }
28 }