X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=input%2Flsr%2Fmensurstriche-layout-bar-lines-between-the-staves.ly;h=e8370c5f1f52a1969809f198ba2e317523f0e162;hb=d664f5a7153ec2b1a1c4c9fba2d2174bf3140695;hp=70a055cf84c4c7eed193d8b1ba631c63427221e6;hpb=92eb006cff3771c5f76058de84ae9e0ad9e74eb4;p=lilypond.git diff --git a/input/lsr/mensurstriche-layout-bar-lines-between-the-staves.ly b/input/lsr/mensurstriche-layout-bar-lines-between-the-staves.ly index 70a055cf84..e8370c5f1f 100644 --- a/input/lsr/mensurstriche-layout-bar-lines-between-the-staves.ly +++ b/input/lsr/mensurstriche-layout-bar-lines-between-the-staves.ly @@ -1,23 +1,41 @@ %% Do not edit this file; it is auto-generated from LSR http://lsr.dsi.unimi.it %% This file is in the public domain. -\version "2.11.38" +\version "2.12.0" \header { lsrtags = "staff-notation, ancient-notation, contexts-and-engravers, tweaks-and-overrides" - texidoc = " + + texidoces = " +La disposición «mensurstriche» en que las líneas divisorias no +están dibujadas sobre los pentagramas, sino entre ellos, se puede +conseguir con un @code{StaffGroup} en vez de un @code{ChoirStaff}. +La línea divisoria sobre los pentagramas se borra estableciendo la +propiedad @code{transparent}. + +" + + doctitlees = "Disposición Mensurstriche (líneas divisorias entre pentagramas)" + + texidoc = " The mensurstriche-layout where the bar lines do not show on the staves but between staves can be achieved with a @code{StaffGroup} instead of -a @code{ChoirStaff}. The bar line on staves is blanked out with an -@code{\\override} command. -" } -% begin verbatim -global = {\override Staff.BarLine #'transparent = ##t - s1 s - %the final bar line is not interupted - \once \override Staff.BarLine #'transparent = ##f - \bar "|."} -\new StaffGroup -\relative c'' << - \new Staff {<< \global { c1 c } >>} - \new Staff {<< \global { c c } >>} ->> +a @code{ChoirStaff}. The bar line on staves is blanked out by setting +the @code{transparent} property. + +" + doctitle = "Mensurstriche layout (bar lines between the staves)" +} % begin verbatim + +global = { + \override Staff.BarLine #'transparent = ##t + s1 s + % the final bar line is not interrupted + \revert Staff.BarLine #'transparent + \bar "|." +} +\new StaffGroup \relative c'' { + << + \new Staff { << \global { c1 c } >> } + \new Staff { << \global { c c } >> } + >> +}