]> git.donarmstrong.com Git - lilypond.git/blob - input/regression/span-bar.ly
f36f2c7878d9a3dfafa568dbd4855482d4997710
[lilypond.git] / input / regression / span-bar.ly
1 \version "2.16.0"
2 \header {
3   texidoc = "Span bars are drawn only between staff bar lines. By setting 
4 bar lines to transparent, they are shown only between systems.
5
6 Setting @code{SpanBar} transparent  removes the barlines
7 between systems.
8  
9 "
10 }
11
12 \layout {
13   \context {
14     \Staff
15   }
16   ragged-right =##t 
17 }
18
19 \relative c' \new StaffGroup <<
20   \new Staff {
21     a1
22     \once \override Score.BarLine #'transparent = ##t
23     a1
24     \once \override Score.SpanBar #'transparent = ##t
25     a1 a1
26     \bar "|."
27   }
28   \lyricmode <<
29     \new Lyrics { bla1 die bla }
30     \new Lyrics { foo bar foo }
31   >>
32   \new Staff {
33     f1 f1 f1 f1
34   }
35 >>
36
37
38
39 %% Local variables:
40 %% LilyPond-indent-level:2
41 %% End:
42