]> git.donarmstrong.com Git - lilypond.git/blob - input/lsr/mensurstriche-layout-bar-lines-between-the-staves.ly
e8370c5f1f52a1969809f198ba2e317523f0e162
[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.12.0"
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   texidoc = "
20 The mensurstriche-layout where the bar lines do not show on the staves
21 but between staves can be achieved with a @code{StaffGroup} instead of
22 a @code{ChoirStaff}.  The bar line on staves is blanked out by setting
23 the @code{transparent} property.
24
25 "
26   doctitle = "Mensurstriche layout (bar lines between the staves)"
27 } % begin verbatim
28
29 global = {
30   \override Staff.BarLine #'transparent = ##t
31   s1 s
32   % the final bar line is not interrupted
33   \revert Staff.BarLine #'transparent
34   \bar "|."
35 }
36 \new StaffGroup \relative c'' {
37   <<
38     \new Staff { << \global { c1 c } >> }
39     \new Staff { << \global { c c } >> }
40   >>
41 }