]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/removing-connecting-bar-lines-on-staffgroup,-pianostaff,-or-grandstaff.ly
Change stringTunings from list of semitones to list of pitches
[lilypond.git] / Documentation / snippets / removing-connecting-bar-lines-on-staffgroup,-pianostaff,-or-grandstaff.ly
1 %% Do not edit this file; it is automatically
2 %% generated from LSR http://lsr.dsi.unimi.it
3 %% This file is in the public domain.
4 \version "2.13.39"
5
6 \header {
7   lsrtags = "rhythms, tweaks-and-overrides"
8
9 %% Translation of GIT committish: a874fda3641c9e02f61be5c41b215b8304b8ed00
10   texidoces = "
11 De forma predeterminada, las líneas divisorias en los grupos
12 StaffGroup, PianoStaff o GrandStaff se conectan entre los pentagramas.
13 Se puede alterar este comportamiento pentagrama a pentagrama.
14
15 "
16   doctitlees = "Quitar las barras de compás entre los pentagramas de un StaffGroup PianoStaff o GrandStaff"
17
18
19
20   texidoc = "
21 By default, bar lines in StaffGroup, PianoStaff, or GrandStaff groups
22 are connected between the staves.  This behaviour can be overridden on
23 a staff-by-staff basis.
24
25 "
26   doctitle = "Removing connecting bar lines on StaffGroup PianoStaff or GrandStaff"
27 } % begin verbatim
28
29 \relative c' {
30   \new StaffGroup <<
31     \new Staff {
32       e1 | e
33       \once \override Staff.BarLine #'allow-span-bar = ##f
34       e1 | e | e
35     }
36     \new Staff {
37       c1 | c | c
38       \once \override Staff.BarLine #'allow-span-bar = ##f
39       c1 | c
40     }
41     \new Staff {
42       a1 | a | a | a | a
43     }
44   >>
45 }
46