]> git.donarmstrong.com Git - lilypond.git/blob - input/lsr/mensurstriche-layout-bar-lines-between-the-staves.ly
Merge master into nested-bookparts
[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.11.62"
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 global = {
29   \override Staff.BarLine #'transparent = ##t
30   s1 s
31   % the final bar line is not interrupted
32   \revert Staff.BarLine #'transparent
33   \bar "|."
34 }
35 \new StaffGroup \relative c'' {
36   <<
37     \new Staff { << \global { c1 c } >> }
38     \new Staff { << \global { c c } >> }
39   >>
40 }