]> git.donarmstrong.com Git - lilypond.git/blobdiff - Documentation/snippets/adding-an-extra-staff.ly
Imported Upstream version 2.14.2
[lilypond.git] / Documentation / snippets / adding-an-extra-staff.ly
diff --git a/Documentation/snippets/adding-an-extra-staff.ly b/Documentation/snippets/adding-an-extra-staff.ly
new file mode 100644 (file)
index 0000000..a619f07
--- /dev/null
@@ -0,0 +1,50 @@
+%% DO NOT EDIT this file manually; it is automatically
+%% generated from LSR http://lsr.dsi.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.0"
+
+\header {
+  lsrtags = "staff-notation, contexts-and-engravers"
+
+%% Translation of GIT committish: 70f5f30161f7b804a681cd080274bfcdc9f4fe8c
+  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"
+
+  texidoc = "
+An extra staff can be added (possibly temporarily) after the start of a
+piece.
+
+"
+  doctitle = "Adding an extra staff"
+} % begin verbatim
+
+\score {
+  <<
+    \new Staff \relative c'' {
+      c1 | c | c | c | c
+    }
+    \new StaffGroup \relative c'' {
+      \new Staff {
+        c1 | c
+        <<
+          {
+            c1 | d
+          }
+          \new Staff {
+            \once \override Staff.TimeSignature #'stencil = ##f
+            c1 | b
+          }
+        >>
+        c1
+      }
+    }
+  >>
+}
+