]> git.donarmstrong.com Git - lilypond.git/blob - input/lsr/adding-an-extra-staff.ly
Merge master into nested-bookparts
[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.11.62"
4
5 \header {
6   lsrtags = "staff-notation, contexts-and-engravers"
7
8   texidoces = "
9 Se puede añadir (posiblemente de forma temporal) un pentagrama
10 nuevo una vez que la pieza ha comenzado.
11
12 "
13   doctitlees = "Añadir un pentagrama nuevo"
14
15   texidoc = "
16 An extra staff can be added (possibly temporarily) after the start of a
17 piece.  
18
19 "
20   doctitle = "Adding an extra staff"
21 } % begin verbatim
22 \score {
23   <<
24     \new Staff \relative c'' { c1 c c c c }
25     \new StaffGroup \relative c'' {
26       \new Staff {
27         c1 c
28         << c1 \new Staff { \once \override Staff.TimeSignature #'stencil = ##f c1 } >>
29         c
30       }
31     }
32   >>
33 }