]> git.donarmstrong.com Git - lilypond.git/blob - input/regression/completion-heads-polyphony.ly
58f575694420974e05951f889f69895119a66851
[lilypond.git] / input / regression / completion-heads-polyphony.ly
1 \version "2.1.26"
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 \notes \relative c'' << 
13             { c2. c bes2 } \\
14             { c2. a8 g4 f4. g4 f  }
15         >>
16
17         \paper {
18                 \translator{
19                         \VoiceContext
20                         \remove "Note_heads_engraver"
21                         \consists "Completion_heads_engraver"
22                 }
23         }
24 }