]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/removing-connecting-bar-lines-on-staffgroup,-pianostaff,-or-grandstaff.ly
7d485e8f163bb5a88f4f5df1060f8cb45a8d6f04
[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: b482c3e5b56c3841a88d957e0ca12964bd3e64fa
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 %% Translation of GIT committish: 28097cf54698db364afeb75658e4c8e0e0ccd716
24   texidocfr = "
25 Les barres de mesure des regroupements @code{StaffGroup},
26 @code{PianoStaff} et @code{GrandStaff} sont par défaut d'un seul tenant.
27 La portion entre les portées peut néanmoins être supprimée, portée par
28 portée.
29
30 "
31   doctitlefr = "Suppression de la partie inter-portée des barres de mesure d'un regroupement autre que ChoirStaff"
32
33   texidoc = "
34 By default, bar lines in StaffGroup, PianoStaff, or GrandStaff groups
35 are connected between the staves.  This behaviour can be overridden on
36 a staff-by-staff basis.
37
38 "
39   doctitle = "Removing connecting bar lines on StaffGroup PianoStaff or GrandStaff"
40 } % begin verbatim
41
42
43 \relative c' {
44   \new StaffGroup <<
45     \new Staff {
46       e1 | e
47       \once \override Staff.BarLine #'allow-span-bar = ##f
48       e1 | e | e
49     }
50     \new Staff {
51       c1 | c | c
52       \once \override Staff.BarLine #'allow-span-bar = ##f
53       c1 | c
54     }
55     \new Staff {
56       a1 | a | a | a | a
57     }
58   >>
59 }
60