1
2\version "2.19.21"
3
4\header{
5
6  texidoc=" Some scripts must have quantized postions. VErtical
7 position descend monotonously for a descending scale.  The staccato
8 dot is close to the notehead. If the head is in a space, then the dot
9 is in the space next to it.  "
10
11}
12
13\layout {
14  ragged-right = ##t
15}
16
17{
18  \new Voice \relative {
19    \voiceOne
20    g'8-. a-. b-. c-.
21    a-. b-. c-. d-.
22    b8[-. a-. g b]
23    e,-. f-. g-. a-.
24    e-. g-. b-. d-.
25  }
26  \context Voice {
27    \relative {
28      e''4-. f-. g-. d-. c-. b-.
29      \stemDown
30      e,-. d-. c-. b-. a-. g-.
31    }
32    \relative {
33      \stemUp
34      d''-> c-> b-> a-> g-> f-> e-> d->
35      d'
36      d-. c-. b-. a-. g-. f-. e-. d-.
37    }
38  }
39}
40