]> git.donarmstrong.com Git - lilypond.git/blob - input/regression/repeat-sign-global-size-10.ly
modify regtests
[lilypond.git] / input / regression / repeat-sign-global-size-10.ly
1 \version "2.16.0"
2 \header {
3   texidoc = "The two dots of a repeat sign should be symmetric
4 to the staff centre and avoid staff lines even for exotic staves.
5 Test set-global-staff size 10 (with layout-set-staff-size)."
6 }
7
8 #(set-global-staff-size 10)
9
10 \score {
11   <<
12     \context Staff = "s1" \with {
13       \override StaffSymbol #'line-positions = #'(-4 -2 0 2)
14       \override StaffSymbol #'staff-space = #0.7
15     } {
16       s1 \bar ":|"
17     }
18
19     \context Staff = "s2" \with {
20       \override StaffSymbol #'staff-space = #0.6
21     } {
22       s1 \bar ":|"
23     }
24   >>
25 }
26
27 \score {
28   <<
29     \context Staff = "s1" \with {
30       \override StaffSymbol #'staff-space = #1.6
31     } {
32       s1 \bar ":|"
33     }
34
35     \context Staff = "s2" \with {
36       \override StaffSymbol #'staff-space = #1.7
37       \override StaffSymbol #'line-count = #4
38     } {
39       s1 \bar ":|"
40     }
41   >>
42
43   \layout {
44     #(layout-set-staff-size 30)
45   }
46 }