]> git.donarmstrong.com Git - lilypond.git/blobdiff - Documentation/snippets/adding-an-extra-staff.ly
Merge branch 'translation' into staging
[lilypond.git] / Documentation / snippets / adding-an-extra-staff.ly
index d0fbd3570a7c5717b4c0ee278daabcfd6be9dbb8..f187bd84e8957a2b7bc9bfb4fbaab6b80d6e4719 100644 (file)
@@ -1,18 +1,13 @@
-%% Do not edit this file; it is automatically
+%% 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.13.10"
+\version "2.17.6"
 
 \header {
-  lsrtags = "staff-notation, contexts-and-engravers"
-
-%% Translation of GIT committish: 341940d3830b59f93a80131471d622c2818afddb
-  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
@@ -22,16 +17,22 @@ piece.
   doctitle = "Adding an extra staff"
 } % begin verbatim
 
+
 \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 \override Staff.TimeSignature.stencil = ##f
+            c1 | b
           }
         >>
         c1
@@ -39,4 +40,3 @@ piece.
     }
   >>
 }
-