X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=Documentation%2Fsnippets%2Fadding-an-extra-staff.ly;h=7bf2674b7ac3571084ff1deb130165bb0a8b6dde;hb=8cce5dd067a8a2bab508f5abebc3955db8837bbf;hp=991673629d7b5b4d8b8b7b522ffff9f5dcb89d0c;hpb=4e7e046d0842fe1de8ef906de402246f7ca33d0b;p=lilypond.git diff --git a/Documentation/snippets/adding-an-extra-staff.ly b/Documentation/snippets/adding-an-extra-staff.ly index 991673629d..7bf2674b7a 100644 --- a/Documentation/snippets/adding-an-extra-staff.ly +++ b/Documentation/snippets/adding-an-extra-staff.ly @@ -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.29" +\version "2.18.0" \header { - lsrtags = "staff-notation, contexts-and-engravers" - -%% Translation of GIT committish: 0b55335aeca1de539bf1125b717e0c21bb6fa31b - 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. } >> } -