]> git.donarmstrong.com Git - lilypond.git/blob - input/lsr/adding-an-extra-staff.ly
00693d1fb08cd47f3a5517eb0091b19b2ccf383b
[lilypond.git] / input / lsr / adding-an-extra-staff.ly
1 %% Do not edit this file; it is auto-generated from LSR http://lsr.dsi.unimi.it
2 %% This file is in the public domain.
3 \version "2.13.1"
4
5 \header {
6   lsrtags = "staff-notation, contexts-and-engravers"
7
8 %% Translation of GIT committish: f39a9724d9f51ed9d0d464689ef62f549d7b8dd6
9   texidoces = "
10 Se puede añadir (posiblemente de forma temporal) un pentagrama
11 nuevo una vez que la pieza ha comenzado.
12
13 "
14   doctitlees = "Añadir un pentagrama nuevo"
15
16   texidoc = "
17 An extra staff can be added (possibly temporarily) after the start of a
18 piece.  
19
20 "
21   doctitle = "Adding an extra staff"
22 } % begin verbatim
23
24 \score {
25   <<
26     \new Staff \relative c'' { c1 | c | c | c | c }
27     \new StaffGroup \relative c'' {
28       \new Staff {
29         c1 | c <<
30           c1 \new Staff {
31             \once \override Staff.TimeSignature #'stencil = ##f
32             c1
33           }
34         >>
35         c1
36       }
37     }
38   >>
39 }
40