]> git.donarmstrong.com Git - lilypond.git/blob - input/lsr/adding-an-extra-staff.ly
Merge branch 'master' into lilypond/translation
[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.12.0"
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
23 \score {
24   <<
25     \new Staff \relative c'' { c1 c c c c }
26     \new StaffGroup \relative c'' {
27       \new Staff {
28         c1 c
29         << c1 \new Staff { \once \override Staff.TimeSignature #'stencil = ##f c1 } >>
30         c
31       }
32     }
33   >>
34 }