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