]> git.donarmstrong.com Git - lilypond.git/blobdiff - input/lsr/adding-an-extra-staff-at-a-line-break.ly
Merge branch 'master' into lilypond/translation
[lilypond.git] / input / lsr / adding-an-extra-staff-at-a-line-break.ly
index 8968befed7a917ad2478492d9a123b708b1ef725..41dce7003e5132600c4cb11cccba23d3352f8486 100644 (file)
@@ -1,10 +1,11 @@
 %% Do not edit this file; it is auto-generated from LSR http://lsr.dsi.unimi.it
 %% This file is in the public domain.
-\version "2.13.0"
+\version "2.13.1"
 
 \header {
   lsrtags = "staff-notation, contexts-and-engravers, breaks"
 
+%% Translation of GIT committish: f39a9724d9f51ed9d0d464689ef62f549d7b8dd6
   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
@@ -21,7 +22,7 @@ compás (véase el ejemplo).
   texidoc = "
 When adding a new staff at a line break, some extra space is
 unfortunately added at the end of the line before the break (to fit in
-a key signature change, which  will never be printed anyway). The
+a key signature change, which  will never be printed anyway).  The
 workaround is to add a setting of
 @code{Staff.explicitKeySignatureVisibility} as is shown in the example.
 In versions 2.10 and earlier, a similar setting for the time signatures
@@ -38,23 +39,24 @@ is also required (see the example).
     \new Staff
     \key f \major
     c1 c^"Unwanted extra space" \break
-    << { c1 c }
+    << { c1 c }
        \new Staff {
          \key f \major
          \once \override Staff.TimeSignature #'stencil = ##f
-         c1 
+         c1 | c
        } 
     >>
-    c1 c^"Fixed here" \break
-    << { c1 c }
+    c1 c^"Fixed here" \break
+    << { c1 c }
        \new Staff {
          \once \set Staff.explicitKeySignatureVisibility = #end-of-line-invisible
          % The next line is not needed in 2.11.x or later:
          \once \override Staff.TimeSignature #'break-visibility = #end-of-line-invisible
          \key f \major
          \once \override Staff.TimeSignature #'stencil = ##f
-         c1 c
+         c1 c
        }
     >>
   }
 }
+