]> git.donarmstrong.com Git - lilypond.git/blob - input/lsr/adding-an-extra-staff.ly
Merge branch 'master' into beaming
[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.48"
4
5 \header {
6   lsrtags = "staff-notation, contexts-and-engravers"
7
8   texidoc = "
9 An extra staff can be added (possibly temporarily) after the start of a
10 piece.  
11
12 "
13   doctitle = "Adding an extra staff"
14 } % begin verbatim
15 \score {
16   <<
17     \new Staff \relative c'' { c1 c c c c }
18     \new StaffGroup \relative c'' {
19       \new Staff {
20         c1 c
21         << c1 \new Staff { \once \override Staff.TimeSignature #'stencil = ##f c1 } >>
22         c
23       }
24     }
25   >>
26 }