]> git.donarmstrong.com Git - lilypond.git/blobdiff - Documentation/snippets/adding-an-extra-staff.ly
Merge remote branch 'origin/master' into release/unstable
[lilypond.git] / Documentation / snippets / adding-an-extra-staff.ly
index 47dab6d4618b5b99145ca673d2945a3712bf31d9..430371a6444e42ddcddf69e5dbafa66a4c3fe808 100644 (file)
@@ -4,18 +4,10 @@
 %% and then run scripts/auxiliar/makelsr.py
 %%
 %% This file is in the public domain.
-\version "2.14.0"
+\version "2.17.30"
 
 \header {
-  lsrtags = "staff-notation, contexts-and-engravers"
-
-%% Translation of GIT committish: 2d548a99cb9dba80f2ff035582009477cd37eceb
-  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 \omit Staff.TimeSignature
             c1 | b
           }
         >>
@@ -47,4 +40,3 @@ piece.
     }
   >>
 }
-