]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/removing-connecting-bar-lines-on-staffgroup,-pianostaff,-or-grandstaff.ly
Fix white space
[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.0"
8
9 \header {
10   lsrtags = "rhythms, tweaks-and-overrides"
11
12 %% Translation of GIT committish: 59caa3adce63114ca7972d18f95d4aadc528ec3d
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 \relative c' {
33   \new StaffGroup <<
34     \new Staff {
35       e1 | e
36       \once \override Staff.BarLine #'allow-span-bar = ##f
37       e1 | e | e
38     }
39     \new Staff {
40       c1 | c | c
41       \once \override Staff.BarLine #'allow-span-bar = ##f
42       c1 | c
43     }
44     \new Staff {
45       a1 | a | a | a | a
46     }
47   >>
48 }
49