]> git.donarmstrong.com Git - lilypond.git/blobdiff - Documentation/snippets/adding-an-extra-staff.ly
Merge branch 'translation' into staging
[lilypond.git] / Documentation / snippets / adding-an-extra-staff.ly
index 001149b2d575476e9279107367b7a7744db572f9..f187bd84e8957a2b7bc9bfb4fbaab6b80d6e4719 100644 (file)
@@ -4,18 +4,10 @@
 %% and then run scripts/auxiliar/makelsr.py
 %%
 %% This file is in the public domain.
-\version "2.12.2"
+\version "2.17.6"
 
 \header {
-  lsrtags = "staff-notation, contexts-and-engravers"
-
-%% Translation of GIT committish: 59caa3adce63114ca7972d18f95d4aadc528ec3d
-  texidoces = "
-Se puede añadir (posiblemente de forma temporal) un pentagrama
-nuevo una vez que la pieza ha comenzado.
-
-"
-  doctitlees = "Añadir un pentagrama nuevo"
+  lsrtags = "contexts-and-engravers, really-simple, staff-notation"
 
   texidoc = "
 An extra staff can be added (possibly temporarily) after the start of a
@@ -25,6 +17,7 @@ piece.
   doctitle = "Adding an extra staff"
 } % begin verbatim
 
+
 \score {
   <<
     \new Staff \relative c'' {
@@ -38,7 +31,7 @@ piece.
             c1 | d
           }
           \new Staff {
-            \once \override Staff.TimeSignature #'stencil = ##f
+            \once \override Staff.TimeSignature.stencil = ##f
             c1 | b
           }
         >>
@@ -47,4 +40,3 @@ piece.
     }
   >>
 }
-