]> git.donarmstrong.com Git - lilypond.git/blob - input/regression/spacing-to-empty-barline.ly
Merge remote-tracking branch 'origin/master' into translation
[lilypond.git] / input / regression / spacing-to-empty-barline.ly
1 \version "2.17.6"
2
3 \header {
4   texidoc = "An empty barline does not confuse the spacing engine too much.
5 The two scores should look approximately the same."
6 }
7
8 \layout {
9   \context {
10     \Score
11     \accepts "Top"
12   }
13
14   \context {
15     \name "Top"
16     \alias "Staff"
17     \type "Engraver_group"
18     \consists "Output_property_engraver"
19     \consists "Bar_engraver"
20     \consists "Axis_group_engraver"
21
22     \override BarLine.transparent = ##t
23   }
24 }
25
26 \paper {
27   ragged-right = ##t
28 }
29
30 \score {
31   <<
32     \new Top { s1 }
33     \new Staff { c''2 c''4 c''4 }
34   >>
35 }
36
37 \score {
38   { c''2 c''4 c''4 }
39 }