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