]> git.donarmstrong.com Git - lilypond.git/blob - input/regression/rest-note-collision.ly
Doc-es: various updates.
[lilypond.git] / input / regression / rest-note-collision.ly
1
2 \header {
3
4   texidoc = "In rest-note collisions, the rest moves in discrete
5   steps, and inside the staff, it moves in whole staff spaces."
6
7         }
8
9
10 \version "2.19.21"
11
12 music = {
13   <<
14     \relative {
15       f'' e d c b a g f e d c
16     }
17     \\
18     {
19       r4 r r r r r r r r r r
20     }
21   >>
22   <<
23     {
24       r4 r r r r r r r r r r
25     }
26     \\
27     \relative {
28       f'' e d c b a g f e d c
29     }
30   >>
31 }
32
33 \score {
34   \new Staff { \music }
35 }
36
37 \score {
38   \new Staff { \override Staff.Rest.style = #'z \music }
39 }
40
41 \score {
42   \new Staff { \override Staff.Rest.style = #'classical \music }
43 }