]> git.donarmstrong.com Git - lilypond.git/blobdiff - Documentation/snippets/adding-an-extra-staff.ly
Add '-dcrop' option to ps and svg backends
[lilypond.git] / Documentation / snippets / adding-an-extra-staff.ly
index 73918168ab1d968e0ae762de51bedcd68d670080..7bf2674b7ac3571084ff1deb130165bb0a8b6dde 100644 (file)
@@ -1,21 +1,13 @@
 %% DO NOT EDIT this file manually; it is automatically
-%% generated from LSR http://lsr.dsi.unimi.it
+%% 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.14.2"
+\version "2.18.0"
 
 \header {
-  lsrtags = "contexts-and-engravers, staff-notation, really-simple"
-
-%% Translation of GIT committish: 6977ddc9a3b63ea810eaecb864269c7d847ccf98
-  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,7 +17,6 @@ piece.
   doctitle = "Adding an extra staff"
 } % begin verbatim
 
-
 \score {
   <<
     \new Staff \relative c'' {
@@ -39,7 +30,7 @@ piece.
             c1 | d
           }
           \new Staff {
-            \once \override Staff.TimeSignature #'stencil = ##f
+            \once \omit Staff.TimeSignature
             c1 | b
           }
         >>
@@ -48,4 +39,3 @@ piece.
     }
   >>
 }
-