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