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