]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/removing-connecting-bar-lines-on-staffgroup,-pianostaff,-or-grandstaff.ly
Local updates to LSR July 2012
[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 %% Translation of GIT committish: 28097cf54698db364afeb75658e4c8e0e0ccd716
11   texidocfr = "
12 Les barres de mesure des regroupements @code{StaffGroup},
13 @code{PianoStaff} et @code{GrandStaff} sont par défaut d'un seul tenant.
14 La portion entre les portées peut néanmoins être supprimée, portée par
15 portée.
16
17 "
18   doctitlefr = "Suppression de la partie inter-portée des barres de mesure d'un regroupement autre que ChoirStaff"
19
20   lsrtags = "tweaks-and-overrides, rhythms"
21
22
23 %% Translation of GIT committish: b482c3e5b56c3841a88d957e0ca12964bd3e64fa
24   texidoces = "
25 De forma predeterminada, las líneas divisorias en los grupos
26 StaffGroup, PianoStaff o GrandStaff se conectan entre los pentagramas.
27 Se puede alterar este comportamiento pentagrama a pentagrama.
28
29 "
30   doctitlees = "Quitar las barras de compás entre los pentagramas de un StaffGroup PianoStaff o GrandStaff"
31
32
33
34   texidoc = "
35 By default, bar lines in StaffGroup, PianoStaff, or GrandStaff groups
36 are connected between the staves.  This behaviour can be overridden on
37 a staff-by-staff basis.
38
39 "
40   doctitle = "Removing connecting bar lines on StaffGroup PianoStaff or GrandStaff"
41 } % begin verbatim
42
43
44 \relative c' {
45   \new StaffGroup <<
46     \new Staff {
47       e1 | e
48       \once \override Staff.BarLine #'allow-span-bar = ##f
49       e1 | e | e
50     }
51     \new Staff {
52       c1 | c | c
53       \once \override Staff.BarLine #'allow-span-bar = ##f
54       c1 | c
55     }
56     \new Staff {
57       a1 | a | a | a | a
58     }
59   >>
60 }
61