]> git.donarmstrong.com Git - lilypond.git/blob - input/regression/staccato-pos.ly
Merge branch 'master' into dev/texi2html
[lilypond.git] / input / regression / staccato-pos.ly
1
2 \version "2.11.51"
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 c'' { 
19     \voiceOne
20     g8-. 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 c' {
28       e'4-. f-. g-. d-. c-. b-.
29       \stemDown
30       e,-. d-. c-. b-. a-. g-.    
31     }
32     \relative c'' {
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 }