X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=Documentation%2Fsnippets%2Fmensurstriche-layout-bar-lines-between-the-staves.ly;h=0d19ecff49c24a4d5fc8d776edd6cf0a418b3bb3;hb=493fa01bf15b02089b985bcba87c5a9a1be7f3b9;hp=7552b20a37a494f9701332d7b87ee019898e768d;hpb=820bbcbc38981f5a1866f291cdf40042ea686db0;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 7552b20a37..0d19ecff49 100644 --- a/Documentation/snippets/mensurstriche-layout-bar-lines-between-the-staves.ly +++ b/Documentation/snippets/mensurstriche-layout-bar-lines-between-the-staves.ly @@ -1,48 +1,14 @@ %% DO NOT EDIT this file manually; it is automatically -%% generated from LSR http://lsr.dsi.unimi.it +%% 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.14.2" +\version "2.18.0" \header { lsrtags = "ancient-notation, contexts-and-engravers, staff-notation, tweaks-and-overrides" -%% Translation of GIT committish: 6977ddc9a3b63ea810eaecb864269c7d847ccf98 - 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 @code{transparent}-Eigenschaft ausgelöscht. - -" - doctitlede = "Mensurstriche-Layout (Taktstriche zwischen den Systemen" - -%% Translation of GIT committish: 3b125956b08d27ef39cd48bfa3a2f1e1bb2ae8b4 - 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 -@qq{transparentes} les portions de barre qui recouvrent les portées. - -" - doctitlefr = "Présentation à l'ancienne (barres de mesure entre les portées)" - - 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 @@ -53,18 +19,17 @@ the @code{transparent} property. 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 } >> } >> } -