]> git.donarmstrong.com Git - lilypond.git/blob - input/lsr/mensurstriche-layout-bar-lines-between-the-staves.ly
Merge branch 'master' of ssh+git://git.sv.gnu.org/srv/git/lilypond
[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 = {\override Staff.BarLine #'transparent = ##t
15           s1 s
16           %the final bar line is not interupted
17           \once \override Staff.BarLine #'transparent = ##f
18           \bar "|."}
19 \new StaffGroup
20 \relative c'' <<
21   \new Staff {<< \global { c1 c } >>}
22   \new Staff {<< \global { c c } >>}
23 >>