]> git.donarmstrong.com Git - lilypond.git/blob - input/regression/repeat-sign-global-size-5.ly
Merge remote-tracking branch 'origin/translation' into master
[lilypond.git] / input / regression / repeat-sign-global-size-5.ly
1 \version "2.17.5"
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 5)
9
10 \score {
11   <<
12     \context Staff = "s1" \with {
13       \override StaffSymbol #'staff-space = #0.7
14     } {
15       s1 \bar ":|."
16     }
17
18     \context Staff = "s2" \with {
19       \override StaffSymbol #'line-positions = #'(-4 -2 0 2)
20     } {
21       s1 \bar ":|."
22     }
23
24     \context Staff = "s3" {
25       s1 \bar ":|."
26     }
27   >>
28 }
29
30 \score {
31   <<
32     \context Staff = "s1" {
33       s1 \bar ":|."
34     }
35
36     \context Staff = "s2" \with {
37       \override StaffSymbol #'staff-space = #3
38       \override StaffSymbol #'line-positions = #'(-4 -2 0 2)
39     } {
40       s1 \bar ":|."
41     }
42
43     \context Staff = "s3" \with {
44       \override StaffSymbol #'staff-space = #6
45     } {
46       s1 \bar ":|."
47     }
48   >>
49
50   \layout {
51     #(layout-set-staff-size 30)
52   }
53 }