]> git.donarmstrong.com Git - lilypond.git/blob - input/lsr/mensurstriche-layout-bar-lines-between-the-staves.ly
Merge commit 'origin'
[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.48"
4
5 \header {
6   lsrtags = "staff-notation, ancient-notation, contexts-and-engravers, tweaks-and-overrides"
7
8   texidoc = "
9 The mensurstriche-layout where the bar lines do not show on the staves
10 but between staves can be achieved with a @code{StaffGroup} instead of
11 a @code{ChoirStaff}.  The bar line on staves is blanked out by setting
12 the @code{transparent} property.
13
14 "
15   doctitle = "Mensurstriche layout (bar lines between the staves)"
16 } % begin verbatim
17 global = {
18   \override Staff.BarLine #'transparent = ##t
19   s1 s
20   % the final bar line is not interrupted
21   \revert Staff.BarLine #'transparent
22   \bar "|."
23 }
24 \new StaffGroup \relative c'' {
25   <<
26     \new Staff { << \global { c1 c } >> }
27     \new Staff { << \global { c c } >> }
28   >>
29 }