]> git.donarmstrong.com Git - lilypond.git/blob - regression/rest-on-nonstandard-staff.ly
Add '-dcrop' option to ps and svg backends
[lilypond.git] / regression / rest-on-nonstandard-staff.ly
1 \version "2.15.18"
2
3 \header {
4   texidoc = "half rests should lie on a staff line, whole rests should hang
5   from a staff line by default even for non-standard staves, except when
6   the position is set by pitch."
7 }
8
9
10 \layout {
11   ragged-right = ##t
12   indent = 0.0
13 }
14
15 \new StaffGroup <<
16   \new Staff {
17     r2
18     g'2\rest
19     r1
20     g'1\rest
21   }
22
23   \new Staff {
24     \override Staff.StaffSymbol #'line-positions = #'(-4 -2 0 2)
25     r2
26     g'2\rest
27     r1
28     g'1\rest
29   }
30
31   \new Staff {
32     \override Staff.StaffSymbol #'line-count = #4
33     r2
34     g'2\rest
35     r1
36     g'1\rest
37   }
38 >>