]> git.donarmstrong.com Git - lilypond.git/blob - input/regression/completion-heads-polyphony.ly
* lily/my-lily-lexer.cc: add \accacciatura and \appoggiatura
[lilypond.git] / input / regression / completion-heads-polyphony.ly
1 #(ly:set-option 'old-relative)
2 \version "1.9.2"
3 \header {
4
5     texidoc = "Completion heads are broken across bar lines. This was
6 intended as a debugging tool, but it can be used to ease music entry.
7 Completion heads are not fooled by polyphony with a different rhythm.
8 "
9
10 }
11
12 \score{ 
13         \context Staff \notes \relative c'' < 
14             { c2. c bes2 } \\
15             { c,2. a8 g4 f4. g4 f  }
16         >
17
18         \paper {
19                 \translator{
20                         \ThreadContext
21                         \remove "Note_heads_engraver"
22                         \consists "Completion_heads_engraver"
23                 }
24         }
25 }