]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/adding-an-extra-staff.ly
Docs: run convert-ly for 2.14.0.
[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.0"
8
9 \header {
10   lsrtags = "staff-notation, contexts-and-engravers"
11
12 %% Translation of GIT committish: 59caa3adce63114ca7972d18f95d4aadc528ec3d
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 \score {
29   <<
30     \new Staff \relative c'' {
31       c1 | c | c | c | c
32     }
33     \new StaffGroup \relative c'' {
34       \new Staff {
35         c1 | c
36         <<
37           {
38             c1 | d
39           }
40           \new Staff {
41             \once \override Staff.TimeSignature #'stencil = ##f
42             c1 | b
43           }
44         >>
45         c1
46       }
47     }
48   >>
49 }
50