]> git.donarmstrong.com Git - lilypond.git/blob - input/regression/dots.ly
.ly version update.
[lilypond.git] / input / regression / dots.ly
1 #(ly:set-option 'old-relative)
2 \version "1.9.8"
3 \header{
4 texidoc="
5 Noteheads can have dots, and rests can too.  Augmentation dots should
6 never be printed on a staff line, but rather be shifted vertically. They
7 should go up, but in case of multiple parts, the down stems have down
8 shifted dots.  (Wanske p. 186) In case of chords, all dots should be in
9 a column.  The dots go along as rests are shifted to avoid collisions.
10 "
11 }
12
13
14
15 \score { 
16   \context Voice \notes\relative c'' {
17     \time 6/8
18         d4. g,,
19         <b'' c d e>4.  <f g a b>
20         <g b d> <c, g' d' a'>
21         
22         
23         \context Staff <<
24              { f''  <b c> r4.  }\\
25              { b, <a b> r4. }
26         >>
27         
28         
29   }
30   \paper { }  
31   \midi { }
32 }
33