]> git.donarmstrong.com Git - lilypond.git/blob - input/lsr/adding-an-extra-staff.ly
Merge branch 'dev/mf2pt1-build' of git://git.sv.gnu.org/lilypond
[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 %% Tags: staff-notation, contexts-and-engravers
4 \version "2.11.35"
5
6 \header { texidoc = "
7 You can add (possibly temporarily) an extra staff after the beginning
8 of  a piece.  
9 " }
10 % begin verbatim
11 \score {
12         <<
13                 \new Staff \relative c''{ c1 c c c c }
14                 \new StaffGroup \relative c''{ 
15                         \new Staff 
16                         c1 c
17                         << c1 \new Staff { c1 } >>
18                         c
19                 }
20         >>
21         \layout {
22                 
23                 \context{
24                         \Score
25
26                 }
27         }
28 }
29
30
31
32
33