X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=Documentation%2Fsnippets%2Fmensurstriche-layout-bar-lines-between-the-staves.ly;h=88638a0c62f58176907d9723fbc594cb0c5dded8;hb=f1b23dd196d0fe5b47f3baf6bf6b9afccf81adef;hp=2c10eae56165a546ed1564be3fe121f34b179358;hpb=7bd6884c300f1a032b5b9f2e0b9ffa5a7938244a;p=lilypond.git diff --git a/Documentation/snippets/mensurstriche-layout-bar-lines-between-the-staves.ly b/Documentation/snippets/mensurstriche-layout-bar-lines-between-the-staves.ly index 2c10eae561..88638a0c62 100644 --- a/Documentation/snippets/mensurstriche-layout-bar-lines-between-the-staves.ly +++ b/Documentation/snippets/mensurstriche-layout-bar-lines-between-the-staves.ly @@ -1,64 +1,35 @@ -%% Do not edit this file; it is automatically -%% generated from LSR http://lsr.dsi.unimi.it +%% DO NOT EDIT this file manually; it is automatically +%% generated from LSR http://lsr.di.unimi.it +%% Make any changes in LSR itself, or in Documentation/snippets/new/ , +%% and then run scripts/auxiliar/makelsr.py +%% %% This file is in the public domain. -\version "2.13.16" +\version "2.18.0" \header { - lsrtags = "staff-notation, ancient-notation, contexts-and-engravers, tweaks-and-overrides" - -%% Translation of GIT committish: d2119a9e5e951c6ae850322f41444ac98d1ed492 - 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)" - -%% Translation of GIT committish: 0a868be38a775ecb1ef935b079000cebbc64de40 - texidocde = " -Das Mensurstiche-Layout, in welchem die Taktlinien nicht auf den Systemen, -sondern zwischen den Systemen gesetzt werden, kann mit einer @code{StaffGroup} -anstelle von @code{ChoirStaff} erreicht werden. Die Taktlinien auf den -Systemen werden mit der the @code{transparent}-Eigenschaft ausgelöscht. - -" - doctitlede = "Mensurstriche-Layout (Taktstriche zwischen den Systemen" -%% Translation of GIT committish: 99dc90bbc369722cf4d3bb9f30b7288762f2167f6 - texidocfr = " -En musique mensurale, les barres de mesure ne traversent pas les -portées. Pour obtenir ce résultat avec un @code{StaffGroup} plutôt -qu'en utilisant un @code{ChoirStaff}, il faudra rendre « transparentes » -les portions de barre qui recouvrent les portées. - -" - doctitlefr = "Présentation à l'ancienne (barres de mesure entre les portées)" - + lsrtags = "ancient-notation, contexts-and-engravers, staff-notation, tweaks-and-overrides" 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 by setting -the @code{transparent} property. +a @code{ChoirStaff}. The bar line on staves is blanked out using +@code{\\hide}. " doctitle = "Mensurstriche layout (bar lines between the staves)" } % begin verbatim global = { - \override Staff.BarLine #'transparent = ##t + \hide Staff.BarLine s1 s % the final bar line is not interrupted - \revert Staff.BarLine #'transparent + \undo \hide Staff.BarLine \bar "|." } + \new StaffGroup \relative c'' { << \new Staff { << \global { c1 c } >> } \new Staff { << \global { c c } >> } >> } -