]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/adding-an-extra-staff.ly
73918168ab1d968e0ae762de51bedcd68d670080
[lilypond.git] / Documentation / snippets / adding-an-extra-staff.ly
1 %% DO NOT EDIT this file manually; it is automatically
2 %% generated from LSR http://lsr.dsi.unimi.it
3 %% Make any changes in LSR itself, or in Documentation/snippets/new/ ,
4 %% and then run scripts/auxiliar/makelsr.py
5 %%
6 %% This file is in the public domain.
7 \version "2.14.2"
8
9 \header {
10   lsrtags = "contexts-and-engravers, staff-notation, really-simple"
11
12 %% Translation of GIT committish: 6977ddc9a3b63ea810eaecb864269c7d847ccf98
13   texidoces = "
14 Se puede añadir (posiblemente de forma temporal) un pentagrama
15 nuevo una vez que la pieza ha comenzado.
16
17 "
18   doctitlees = "Añadir un pentagrama nuevo"
19
20   texidoc = "
21 An extra staff can be added (possibly temporarily) after the start of a
22 piece.
23
24 "
25   doctitle = "Adding an extra staff"
26 } % begin verbatim
27
28
29 \score {
30   <<
31     \new Staff \relative c'' {
32       c1 | c | c | c | c
33     }
34     \new StaffGroup \relative c'' {
35       \new Staff {
36         c1 | c
37         <<
38           {
39             c1 | d
40           }
41           \new Staff {
42             \once \override Staff.TimeSignature #'stencil = ##f
43             c1 | b
44           }
45         >>
46         c1
47       }
48     }
49   >>
50 }
51