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