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