]> git.donarmstrong.com Git - lilypond.git/blob - input/regression/repeat-sign-global-size-10.ly
97c5d9292504622b0d6baa8ace01bd60649223b9
[lilypond.git] / input / regression / repeat-sign-global-size-10.ly
1 \version "2.15.42"
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     } {
15       s1 \bar ":|"
16     }
17
18     \context Staff = "s2" \with {
19       \override StaffSymbol #'staff-space = #0.75
20     } {
21       s1 \bar ":|"
22     }
23   >>
24 }
25
26 \score {
27   <<
28     \context Staff = "s1" {
29       s1 \bar ":|"
30     }
31
32     \context Staff = "s2" \with {
33       \override StaffSymbol #'staff-space = #2
34       \override StaffSymbol #'line-count = #4
35     } {
36       s1 \bar ":|"
37     }
38   >>
39
40   \layout {
41     #(layout-set-staff-size 30)
42   }
43 }