]> 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 d67e7bdea26d2fcc645f724926f24f2a417987ed..7bf2674b7ac3571084ff1deb130165bb0a8b6dde 100644 (file)
@@ -1,31 +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 {
-%% Translation of GIT committish: 85394d425536d267ed0cb71d17023849f1611180
-  texidocfr = "
-Vous pouvez ajouter une nouvelle portée, éventuellement de manière
-temporaire, après le début d'un morceau.
-
-"
-  doctitlefr = "Ajout d'une portée supplémentaire"
-
-
-  lsrtags = "contexts-and-engravers, staff-notation, really-simple"
-
-
-%% Translation of GIT committish: b482c3e5b56c3841a88d957e0ca12964bd3e64fa
-  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
@@ -35,7 +17,6 @@ piece.
   doctitle = "Adding an extra staff"
 } % begin verbatim
 
-
 \score {
   <<
     \new Staff \relative c'' {
@@ -49,7 +30,7 @@ piece.
             c1 | d
           }
           \new Staff {
-            \once \override Staff.TimeSignature #'stencil = ##f
+            \once \omit Staff.TimeSignature
             c1 | b
           }
         >>
@@ -58,4 +39,3 @@ piece.
     }
   >>
 }
-