]> git.donarmstrong.com Git - lilypond.git/blob - input/regression/completion-rest.ly
Docs: run convert-ly for 2.14.0.
[lilypond.git] / input / regression / completion-rest.ly
1 \version "2.14.0"
2
3 \header{
4 texidoc="
5
6 If the @code{Rest_engraver} is replaced by the @code{Completion_rest_engraver},
7 rests with a duration factor still keep their requested appearance.
8
9 "
10 }
11
12 #(set-paper-size "a6")
13
14 \layout { ragged-right= ##t }
15
16
17 \new Voice \with {
18     \remove "Rest_engraver"
19     \consists "Completion_rest_engraver"
20 } \relative c'{
21
22   r\breve |
23   r1*2 |
24   r2*4 |
25   r8*20
26 }