]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/mensurstriche-layout-bar-lines-between-the-staves.ly
Merge commit 'origin/master'
[lilypond.git] / Documentation / snippets / mensurstriche-layout-bar-lines-between-the-staves.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.4"
5
6 \header {
7   lsrtags = "staff-notation, ancient-notation, contexts-and-engravers, tweaks-and-overrides"
8
9 %% Translation of GIT committish: b2d4318d6c53df8469dfa4da09b27c15a374d0ca
10   texidoces = "
11 La disposición «mensurstriche» en que las líneas divisorias no
12 están dibujadas sobre los pentagramas, sino entre ellos, se puede
13 conseguir con un @code{StaffGroup} en vez de un @code{ChoirStaff}.
14 La línea divisoria sobre los pentagramas se borra estableciendo la
15 propiedad @code{transparent}.
16
17 "
18
19   doctitlees = "Disposición Mensurstriche (líneas divisorias entre pentagramas)"
20
21 %% Translation of GIT committish: d96023d8792c8af202c7cb8508010c0d3648899d
22   texidocde = "
23 Das Mensurstiche-Layout, in welchem die Taktlinien nicht auf den Systemen,
24 sondern zwischen den Systemen gesetzt werden, kann mit einer @code{StaffGroup}
25 anstelle von @code{ChoirStaff} erreicht werden.  Die Taktlinien auf den
26 Systemen werden mit der the @code{transparent}-Eigenschaft ausgelöscht.
27
28 "
29   doctitlede = "Mensurstriche-Layout (Taktstriche zwischen den Systemen"
30
31   texidoc = "
32 The mensurstriche-layout where the bar lines do not show on the staves
33 but between staves can be achieved with a @code{StaffGroup} instead of
34 a @code{ChoirStaff}.  The bar line on staves is blanked out by setting
35 the @code{transparent} property.
36
37 "
38   doctitle = "Mensurstriche layout (bar lines between the staves)"
39 } % begin verbatim
40
41 global = {
42   \override Staff.BarLine #'transparent = ##t
43   s1 s
44   % the final bar line is not interrupted
45   \revert Staff.BarLine #'transparent
46   \bar "|."
47 }
48 \new StaffGroup \relative c'' {
49   <<
50     \new Staff { << \global { c1 c } >> }
51     \new Staff { << \global { c c } >> }
52   >>
53 }
54