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