1\version "2.19.12"
2
3\header {
4  texidoc = "The @code{Script} grobs should follow the descending melody line,
5even 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}
23