]> git.donarmstrong.com Git - lilypond.git/blob - input/regression/completion-heads-unit.ly
Merge branch 'master' into lilypond/translation
[lilypond.git] / input / regression / completion-heads-unit.ly
1 \version "2.15.37"
2
3 \header {
4 texidoc = "
5 Note head completion may be broken into sub-bar units by setting the
6 @code{completionUnit} property.
7 "
8 }
9
10 \layout {
11   \context {
12     \Voice
13     \remove "Note_heads_engraver"
14     \consists "Completion_heads_engraver"
15   }
16 }
17
18 \context Staff \relative f {
19   \time 9/8
20   \set completionUnit = #(ly:make-moment 3 8)
21   g'1.. g2
22   \time 6/4
23   \set completionUnit = #(ly:make-moment 1 4)
24   \set tupletSpannerDuration = #(ly:make-moment 1 4)
25   \times 2/3 { e4 c8 f g a4 b8 c4 b8 a4 g8 a e f4 }
26 }