]> git.donarmstrong.com Git - lilypond.git/blob - input/regression/span-bar.ly
*** empty log message ***
[lilypond.git] / input / regression / span-bar.ly
1 \version "2.6.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
13 \relative c' \new StaffGroup <<
14   \new Staff {
15     \override Score.BarLine #'transparent = ##t
16     a1 a1
17     \revert Score.BarLine #'transparent
18     \override Score.SpanBar #'transparent = ##t
19     a1 a1
20   }
21   \lyricmode <<
22     \new Lyrics { bla1 die bla }
23     \new Lyrics { foo bar foo }
24   >>
25   \new Staff {
26     f1 f1 f1 f1
27   }
28 >>
29 \layout {
30   \context {
31     \Staff
32   }
33   raggedright =##t 
34 }
35
36
37
38 %% Local variables:
39 %% LilyPond-indent-level:2
40 %% End:
41