]> git.donarmstrong.com Git - lilypond.git/blob - input/lsr/adding-an-extra-staff.ly
Merge commit 'origin' into hairpin
[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.13.1"
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 {
30             \once \override Staff.TimeSignature #'stencil = ##f
31             c1
32           }
33         >>
34         c1
35       }
36     }
37   >>
38 }