]> git.donarmstrong.com Git - lilypond.git/blob - input/regression/no-staff.ly
0c4e28f113a75b5dd7a47f3d6d202437915f9103
[lilypond.git] / input / regression / no-staff.ly
1 \version "2.16.0"
2 % possible rename to staff-something.  -gp
3
4 \header{ texidoc = "@cindex Staff Remove
5 The printing of the staff lines may be suppressed by removing the 
6 corresponding engraver.
7 "
8 }
9
10 \layout {
11     ragged-right = ##t
12 }
13
14 \relative \new Staff \with {
15         \remove "Staff_symbol_engraver"
16         \consists "Pitch_squash_engraver"
17         \remove "Clef_engraver"
18     } {
19         c4 d4 e8 d8
20     }
21
22