]> git.donarmstrong.com Git - lilypond.git/blob - input/lsr/adding-an-extra-staff.ly
Add a TODO comment re grace note spacing.
[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.35"
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 { c1 } >>
19                         c
20                 }
21         >>
22         \layout {
23                 
24                 \context{
25                         \Score
26
27                 }
28         }
29 }
30
31
32
33
34