]> git.donarmstrong.com Git - lilypond.git/blob - input/regression/span-bar.ly
* lily/my-lily-lexer.cc: add \accacciatura and \appoggiatura
[lilypond.git] / input / regression / span-bar.ly
1 #(ly:set-option 'old-relative)
2 \version "1.9.2"
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' \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    BarLine \override #'transparent = ##t
21   }
22   raggedright =##t 
23  }
24 }
25