]> git.donarmstrong.com Git - lilypond.git/blob - input/regression/span-bar.ly
9bebddd6262bcd3201980fda740c36f7cd808a66
[lilypond.git] / input / regression / span-bar.ly
1 \header {
2 texidoc = "Span bars draw only in between staff bar lines, so setting those to transparent shows bar lines between systems only.
3 "
4 }
5
6 \score {
7  \notes \relative c' \context StaffGroup = groupie <
8   \context Staff = SA { c1 c1 c1}
9   \context Lyrics = LA \lyrics <
10    { bla1 die bla }
11   >
12   \context Staff = SB { a1 a1 a1}
13   \context Lyrics = LB \lyrics <
14    { bla1 die bla }
15    { foo bar foo }
16   >
17   \context Staff = SC { f1 f1 f1}
18   \context Lyrics = LC \lyrics <
19    { bla1 die bla }
20    { foo bar foo }
21    { foo bar foo }
22   >
23   \context Staff = SD { d1 d1 d1}
24   \context Lyrics = LD \lyrics <
25    { bla1 die bla }
26    { foo bar foo }
27    { foo bar foo }
28    { foo bar foo }
29   >
30  >
31  \paper {
32   \translator {
33    \StaffContext
34    BarLine \override #'transparent = ##t
35   }
36  }
37 }