]> git.donarmstrong.com Git - lilypond.git/blob - input/regression/span-bar.ly
* scripts/lilypond-book.py (do_file): do not overwrite input file.
[lilypond.git] / input / regression / span-bar.ly
1 \version "2.1.26"
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 }
7
8 \score {
9  \notes \relative c' \new StaffGroup <<
10  \new Staff { a1 a1 a1}
11   \new Lyrics \lyrics <<
12    { bla1 die bla }
13    { foo bar foo }
14   >>
15   \new Staff { f1 f1 f1}
16  >>
17  \paper {
18   \translator {
19    \StaffContext
20    \override BarLine #'transparent = ##t
21   }
22   raggedright =##t 
23  }
24 }
25