]> git.donarmstrong.com Git - lilypond.git/blobdiff - Documentation/snippets/adding-an-extra-staff-at-a-line-break.ly
Merge remote-tracking branch 'origin/master' into translation
[lilypond.git] / Documentation / snippets / adding-an-extra-staff-at-a-line-break.ly
index f6af56416e3ead60ca768ce555fbd7aac279e516..ef1d5ad8ae9087c699bc1ba5b8d762d8ead6b8d6 100644 (file)
@@ -1,22 +1,13 @@
-%% 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.12.2"
+\version "2.18.0"
 
 \header {
-  lsrtags = "staff-notation, contexts-and-engravers, breaks"
-
-%% Translation of GIT committish: fa19277d20f8ab0397c560eb0e7b814bd804ecec
-  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
@@ -38,7 +29,7 @@ workaround is to add a setting of
     << { c1 | c }
        \new Staff {
          \key f \major
-         \once \override Staff.TimeSignature #'stencil = ##f
+         \once \omit Staff.TimeSignature
          c1 | c
        }
     >>
@@ -47,10 +38,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 \omit Staff.TimeSignature
          c1 | c
        }
     >>
   }
 }
-