]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/removing-connecting-bar-lines-on-staffgroup,-pianostaff,-or-grandstaff.ly
Doc-fr: updates texidocs
[lilypond.git] / Documentation / snippets / removing-connecting-bar-lines-on-staffgroup,-pianostaff,-or-grandstaff.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.6"
8
9 \header {
10   lsrtags = "rhythms, tweaks-and-overrides"
11
12   texidoc = "
13 By default, bar lines in StaffGroup, PianoStaff, or GrandStaff groups
14 are connected between the staves.  This behaviour can be overridden on
15 a staff-by-staff basis.
16
17 "
18   doctitle = "Removing connecting bar lines on StaffGroup PianoStaff or GrandStaff"
19 } % begin verbatim
20
21
22 \relative c' {
23   \new StaffGroup <<
24     \new Staff {
25       e1 | e
26       \once \override Staff.BarLine.allow-span-bar = ##f
27       e1 | e | e
28     }
29     \new Staff {
30       c1 | c | c
31       \once \override Staff.BarLine.allow-span-bar = ##f
32       c1 | c
33     }
34     \new Staff {
35       a1 | a | a | a | a
36     }
37   >>
38 }