]> git.donarmstrong.com Git - lilypond.git/blob - input/lsr/adding-an-extra-staff.ly
Merge branch 'master' of ssh://kainhofer@git.sv.gnu.org/srv/git/lilypond into dev...
[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.38"
4
5 \header {
6   lsrtags = "staff-notation, contexts-and-engravers"
7  texidoc = "
8 You can add (possibly temporarily) an extra staff after the beginning
9 of  a piece.  
10 " }
11 % begin verbatim
12 \score {
13   <<
14     \new Staff \relative c'' { c1 c c c c }
15     \new StaffGroup \relative c'' {
16       \new Staff {
17         c1 c
18         << c1 \new Staff { \once \override Staff.TimeSignature #'stencil = ##f c1 } >>
19         c
20       }
21     }
22   >>
23 }