1%% DO NOT EDIT this file manually; it is automatically
2%% generated from LSR http://lsr.di.unimi.it
3%% Make any changes in LSR itself, or in Documentation/snippets/new/ ,
4%% and then run scripts/auxiliar/makelsr.py
5%%
6%% This file is in the public domain.
7\version "2.21.2"
8
9\header {
10  lsrtags = "ancient-notation, contexts-and-engravers, staff-notation, tweaks-and-overrides"
11
12  texidoc = "
13The mensurstriche-layout where the bar lines do not show on the staves
14but between staves can be achieved with a @code{StaffGroup} instead of
15a @code{ChoirStaff}.  The bar line on staves is blanked out using
16@code{\\hide}.
17
18"
19  doctitle = "Mensurstriche layout (bar lines between the staves)"
20} % begin verbatim
21
22global = {
23  \hide Staff.BarLine
24  s1 s
25  % the final bar line is not interrupted
26  \undo \hide Staff.BarLine
27  \bar "|."
28}
29
30\new StaffGroup \relative c'' {
31  <<
32    \new Staff { << \global { c1 c } >> }
33    \new Staff { << \global { c c } >> }
34  >>
35}
36