]> git.donarmstrong.com Git - lilypond.git/blob - input/lsr/mensurstriche-layout-bar-lines-between-the-staves.ly
LSR: update.
[lilypond.git] / input / lsr / mensurstriche-layout-bar-lines-between-the-staves.ly
1 %% Do not edit this file; it is auto-generated from LSR http://lsr.dsi.unimi.it
2 %% This file is in the public domain.
3 \version "2.11.38"
4
5 \header {
6   lsrtags = "staff-notation, ancient-notation, contexts-and-engravers, tweaks-and-overrides"
7  texidoc = "
8 The mensurstriche-layout where the bar lines do not show on the staves
9 but between staves can be achieved with a @code{StaffGroup} instead of
10 a @code{ChoirStaff}. The bar line on staves is blanked out with an
11 @code{\\override} command.
12 " }
13 % begin verbatim
14 global = {
15   \override Staff.BarLine #'transparent = ##t
16   s1 s
17   % the final bar line is not interrupted
18   \revert Staff.BarLine #'transparent
19   \bar "|."
20 }
21 \new StaffGroup \relative c'' {
22   <<
23     \new Staff { << \global { c1 c } >> }
24     \new Staff { << \global { c c } >> }
25   >>
26 }