]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/removing-connecting-bar-lines-on-staffgroup,-pianostaff,-or-grandstaff.ly
14eee059b6f21053efd7e6c443499212dc7009e2
[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.14.2"
8
9 \header {
10   lsrtags = "tweaks-and-overrides, rhythms"
11
12 %% Translation of GIT committish: 6977ddc9a3b63ea810eaecb864269c7d847ccf98
13   texidoces = "
14 De forma predeterminada, las líneas divisorias en los grupos
15 StaffGroup, PianoStaff o GrandStaff se conectan entre los pentagramas.
16 Se puede alterar este comportamiento pentagrama a pentagrama.
17
18 "
19   doctitlees = "Quitar las barras de compás entre los pentagramas de un StaffGroup PianoStaff o GrandStaff"
20
21
22
23   texidoc = "
24 By default, bar lines in StaffGroup, PianoStaff, or GrandStaff groups
25 are connected between the staves.  This behaviour can be overridden on
26 a staff-by-staff basis.
27
28 "
29   doctitle = "Removing connecting bar lines on StaffGroup PianoStaff or GrandStaff"
30 } % begin verbatim
31
32
33 \relative c' {
34   \new StaffGroup <<
35     \new Staff {
36       e1 | e
37       \once \override Staff.BarLine #'allow-span-bar = ##f
38       e1 | e | e
39     }
40     \new Staff {
41       c1 | c | c
42       \once \override Staff.BarLine #'allow-span-bar = ##f
43       c1 | c
44     }
45     \new Staff {
46       a1 | a | a | a | a
47     }
48   >>
49 }
50