X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=Documentation%2Fsnippets%2Fadding-an-extra-staff.ly;h=7bf2674b7ac3571084ff1deb130165bb0a8b6dde;hb=e4cab35000dfa1e6f0d9ed41f420152b4a8cc778;hp=018d8656c958f627a80af908b2d415d5670da491;hpb=3f912dfe2d4aacfac95d1565e5d60ab02346945e;p=lilypond.git diff --git a/Documentation/snippets/adding-an-extra-staff.ly b/Documentation/snippets/adding-an-extra-staff.ly index 018d8656c9..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.16" +\version "2.18.0" \header { - lsrtags = "staff-notation, contexts-and-engravers" - -%% Translation of GIT committish: 5a7301fc350ffc3ab5bd3a2084c91666c9e9a549 - 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. } >> } -