]> git.donarmstrong.com Git - lilypond.git/blob - input/regression/no-staff.ly
8a53c5a29091ebf8f707df3b6a30b88dfcd0a34a
[lilypond.git] / input / regression / no-staff.ly
1 \version "2.14.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