X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=Documentation%2Fsnippets%2Fadding-an-extra-staff-at-a-line-break.ly;h=2c74e33ce678a85198a00095d116e86c73bef760;hb=13da8b27aabc5d5a752d00ed1e2b99ad20f0f264;hp=155e25f5dfde2b9687f48e68590237c28572772d;hpb=c833f8a341b81466e084ed031362eadeb4a815aa;p=lilypond.git diff --git a/Documentation/snippets/adding-an-extra-staff-at-a-line-break.ly b/Documentation/snippets/adding-an-extra-staff-at-a-line-break.ly index 155e25f5df..2c74e33ce6 100644 --- a/Documentation/snippets/adding-an-extra-staff-at-a-line-break.ly +++ b/Documentation/snippets/adding-an-extra-staff-at-a-line-break.ly @@ -4,22 +4,10 @@ %% and then run scripts/auxiliar/makelsr.py %% %% This file is in the public domain. -\version "2.14.2" +\version "2.17.6" \header { - lsrtags = "workaround, breaks, contexts-and-engravers, staff-notation" - -%% Translation of GIT committish: 6977ddc9a3b63ea810eaecb864269c7d847ccf98 - texidoces = " -Al añadir un pentagrama nuevo en un salto de línea, por desgracia -se añade un espacio adicional al final de la línea antes del salto -(reservado para hacer sitio a un cambio de armadura que de todas -formas no se va a imprimir). La solución alternativa es añadir un -ajuste para @code{Staff.explicitKeySignatureVisibility} como se -muestra en el ejemplo. - -" - doctitlees = "Añadir un pentagrama adicional en un salto de línea" + lsrtags = "breaks, contexts-and-engravers, staff-notation, workaround" texidoc = " When adding a new staff at a line break, some extra space is @@ -42,7 +30,7 @@ workaround is to add a setting of << { c1 | c } \new Staff { \key f \major - \once \override Staff.TimeSignature #'stencil = ##f + \once \override Staff.TimeSignature.stencil = ##f c1 | c } >> @@ -51,10 +39,9 @@ workaround is to add a setting of \new Staff { \once \set Staff.explicitKeySignatureVisibility = #end-of-line-invisible \key f \major - \once \override Staff.TimeSignature #'stencil = ##f + \once \override Staff.TimeSignature.stencil = ##f c1 | c } >> } } -