]> 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 0bf833c8f2f73c94c698e3b5c44713083bbff425..7bf2674b7ac3571084ff1deb130165bb0a8b6dde 100644 (file)
@@ -1,18 +1,13 @@
-%% Do not edit this file; it is automatically
-%% generated from LSR http://lsr.dsi.unimi.it
+%% DO NOT EDIT this file manually; it is automatically
+%% 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.13.16"
+\version "2.18.0"
 
 \header {
-  lsrtags = "staff-notation, contexts-and-engravers"
-
-%% Translation of GIT committish: 1d589aa04c20d7711bf662618adbdd6d445db29d
-  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
@@ -24,14 +19,19 @@ piece.
 
 \score {
   <<
-    \new Staff \relative c'' { c1 | c | c | c | c }
+    \new Staff \relative c'' {
+      c1 | c | c | c | c
+    }
     \new StaffGroup \relative c'' {
       \new Staff {
-        c1 | c <<
-          c1
+        c1 | c
+        <<
+          {
+            c1 | d
+          }
           \new Staff {
-            \once \override Staff.TimeSignature #'stencil = ##f
-            c1
+            \once \omit Staff.TimeSignature
+            c1 | b
           }
         >>
         c1
@@ -39,4 +39,3 @@ piece.
     }
   >>
 }
-