]> git.donarmstrong.com Git - lilypond.git/blob - input/regression/repeat-sign-global-size-30.ly
Run scripts/auxiliar/update-with-convert-ly.sh
[lilypond.git] / input / regression / repeat-sign-global-size-30.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 30 (with layout-set-staff-size)."
6 }
7
8 #(set-global-staff-size 30)
9
10 \score {
11   <<
12     \context Staff = "s1" \with {
13       \override StaffSymbol #'staff-space = #0.65
14     } {
15       s1 \bar ":|"
16     }
17
18     \context Staff = "s2" \with {
19       \override StaffSymbol #'staff-space = #0.7
20       \override StaffSymbol #'line-positions = #'(-4 -2 0 2)
21     } {
22       s1 \bar ":|"
23     }
24   >>
25 }
26
27 \score {
28   <<
29     \context Staff = "s1" \with {
30       \override StaffSymbol #'staff-space = #0.25
31     } {
32       s1 \bar ":|"
33     }
34
35     \context Staff = "s2" \with {
36       \override StaffSymbol #'staff-space = #0.3
37       \override StaffSymbol #'line-count = #4
38     } {
39       s1 \bar ":|"
40     }
41   >>
42
43   \layout {
44     #(layout-set-staff-size 10)
45   }
46 }