X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=Documentation%2Fsnippets%2Fadding-an-extra-staff.ly;h=205d47e79a24d2e00486eaede28453e14472e405;hb=26a079ca2393d053315ef8dbef626c897dc9645a;hp=4d2ad062a80f1432c50f85e4b2662ae79daa79ab;hpb=14c7123e678938b7cc858c9f087788fd6516c1a2;p=lilypond.git diff --git a/Documentation/snippets/adding-an-extra-staff.ly b/Documentation/snippets/adding-an-extra-staff.ly index 4d2ad062a8..205d47e79a 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 +%% 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.16.0" \header { - lsrtags = "staff-notation, contexts-and-engravers" - -%% Translation of GIT committish: b2d4318d6c53df8469dfa4da09b27c15a374d0ca - 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 + c1 | b } >> c1 @@ -39,4 +40,3 @@ piece. } >> } -