]> git.donarmstrong.com Git - lilypond.git/blob - input/regression/repeat-sign-layout-size.ly
Rerun scripts/auxiliar/update-with-convert-ly.sh
[lilypond.git] / input / regression / repeat-sign-layout-size.ly
1 \version "2.17.6"
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 layout-set-staff-size."
6 }
7
8 \score {
9   <<
10     \context Staff = "s1" \with {
11       \override StaffSymbol.staff-space = #0.3
12     } {
13       s1 \bar ":|."
14     }
15
16     \context Staff = "s2" \with {
17       \override StaffSymbol.staff-space = #0.5
18     } {
19       s1 \bar ":|."
20     }
21
22     \context Staff = "s3" {
23       s1 \bar ":|."
24     }
25   >>
26
27   \layout {
28     #(layout-set-staff-size 10)
29   }
30 }
31
32 \score
33 {
34   <<
35     \context Staff = "s1" \with {
36       \override StaffSymbol.staff-space = #0.5
37     } {
38       s1 \bar ":|."
39     }
40
41     \context Staff = "s2" \with {
42       \override StaffSymbol.staff-space = #0.6
43     } {
44       s1 \bar ":|."
45     }
46
47     \context Staff = "s3" {
48       s1 \bar ":|."
49     }
50   >>
51 }