]> git.donarmstrong.com Git - lilypond.git/blob - input/regression/span-bar.ly
Massive changes - see ChangeLog.
[lilypond.git] / input / regression / span-bar.ly
1 #(ly:set-option 'old-relative)
2 \version "1.9.0"
3 \header {
4 texidoc = "Span bars draw only in between staff bar lines, so setting those to transparent shows bar lines between systems only.
5 "
6 }
7
8 \score {
9  \notes \relative c' \context StaffGroup = groupie <
10  \context Staff = SB { a1 a1 a1}
11   \context Lyrics = LB \lyrics <
12    { bla1 die bla }
13    { foo bar foo }
14   >
15   \context Staff = SC { f1 f1 f1}
16  >
17  \paper {
18   \translator {
19    \StaffContext
20    BarLine \override #'transparent = ##t
21   }
22   raggedright =##t 
23  }
24 }
25