]> git.donarmstrong.com Git - lilypond.git/blob - input/regression/span-bar-partial.ly
Add support for max-systems-per-page.
[lilypond.git] / input / regression / span-bar-partial.ly
1 \version "2.11.51"
2 \header {
3   texidoc = "Span bars can be turned on/off on a staff-by-staff basis."
4 }
5
6 \layout {
7   \context {
8     \Staff
9   }
10   ragged-right =##t 
11 }
12
13 \relative c' \new StaffGroup <<
14   \new Staff {
15     c1
16     \once \override Staff.BarLine #'allow-span-bar = ##f
17     c1 c1 c1
18     \bar "|."
19   }
20   \new Staff {
21     a1 a1
22     \once \override Staff.BarLine #'allow-span-bar = ##f
23     a1 a1
24   }
25   \new Staff {
26     f1 f1 f1 f1
27   }
28 >>
29
30
31
32 %% Local variables:
33 %% LilyPond-indent-level:2
34 %% End:
35