]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/mensurstriche-layout-bar-lines-between-the-staves.ly
Doc-fr: updates texidocs
[lilypond.git] / Documentation / snippets / mensurstriche-layout-bar-lines-between-the-staves.ly
1 %% DO NOT EDIT this file manually; it is automatically
2 %% generated from LSR http://lsr.dsi.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.17.30"
8
9 \header {
10   lsrtags = "ancient-notation, contexts-and-engravers, staff-notation, tweaks-and-overrides"
11
12   texidoc = "
13 The mensurstriche-layout where the bar lines do not show on the staves
14 but between staves can be achieved with a @code{StaffGroup} instead of
15 a @code{ChoirStaff}.  The bar line on staves is blanked out by setting
16 the @code{transparent} property.
17
18 "
19   doctitle = "Mensurstriche layout (bar lines between the staves)"
20 } % begin verbatim
21
22
23 global = {
24   \hide Staff.BarLine
25   s1 s
26   % the final bar line is not interrupted
27   \undo \hide Staff.BarLine
28   \bar "|."
29 }
30 \new StaffGroup \relative c'' {
31   <<
32     \new Staff { << \global { c1 c } >> }
33     \new Staff { << \global { c c } >> }
34   >>
35 }