]> git.donarmstrong.com Git - lilypond.git/blob - input/no-notation/die-staff.ly
Merge branch 'jneeman' of git+ssh://jneem@git.sv.gnu.org/srv/git/lilypond into jneeman
[lilypond.git] / input / no-notation / die-staff.ly
1 \version "2.10.0"
2
3 \header  {
4 texidoc = "a staff should really die, if no one's referencing it."
5 }
6 \score {
7  {
8     \new Staff =  "q" {
9        { a' b' c' d' }
10     }
11
12     \break
13
14     \context PianoStaff <<
15       \new Staff =  "i" {
16          { a' b' c' d' }
17       }
18       \new Staff =  "ii" {
19          { \clef "bass" a b c d }
20       }
21     >>
22   }
23 }