]> git.donarmstrong.com Git - lilypond.git/blob - input/regression/skyline-point-extent.ly
Merge branch 'master' of /home/jcharles/GIT/Lily/. into translation
[lilypond.git] / input / regression / skyline-point-extent.ly
1 \version "2.19.12"
2
3 \header {
4   texidoc = "The @code{Script} grobs should follow the descending melody line,
5 even though the @code{NoteHead} stencils are point stencils. The
6 @code{Stem_engraver} is removed so that the only
7 @code{side-support-element} is the @code{NoteHead}.
8 "
9 }
10
11 \layout {
12   \context {
13     \Voice
14     \remove "Stem_engraver"
15   }
16 }
17
18 {
19   \override Script.direction = #DOWN
20   \override NoteHead.stencil = #point-stencil
21   c'2.-> b8-- a-- g1->
22 }