]> git.donarmstrong.com Git - lilypond.git/blobdiff - Documentation/snippets/adding-an-extra-staff-at-a-line-break.ly
Rerun scripts/auxiliar/update-with-convert-ly.sh
[lilypond.git] / Documentation / snippets / adding-an-extra-staff-at-a-line-break.ly
index 62c39fe7a835e5c2796fc88992984c2352cc2b86..2c74e33ce678a85198a00095d116e86c73bef760 100644 (file)
@@ -4,33 +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 = "breaks, workaround, contexts-and-engravers, staff-notation"
-
-%% Translation of GIT committish: b482c3e5b56c3841a88d957e0ca12964bd3e64fa
-  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"
-
-%% Translation of GIT committish: f5cfaf8ef4ac347702f554af0944ef0d8396e73a
-  texidocfr = "
-Lorsqu'une nouvelle portée vient s'ajouter après un saut de ligne,
-LilyPond préserve un espace juste avant le saut de ligne -- pour un
-éventuel changement d'armure qui, quoi qu'il en soit, ne sera pas
-imprimé.  L'astuce consiste alors, comme indiqué dans l'exemple suivant,
-à ajuster @code{Staff.explicitKeySignatureVisibility}.
-
-"
-  doctitlefr = "Ajout d'une portée supplémentaire après un saut de ligne"
+  lsrtags = "breaks, contexts-and-engravers, staff-notation, workaround"
 
   texidoc = "
 When adding a new staff at a line break, some extra space is
@@ -53,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
        }
     >>
@@ -62,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
        }
     >>
   }
 }
-