]> git.donarmstrong.com Git - lilypond.git/blob - input/regression/no-staff.ly
input/test fixes
[lilypond.git] / input / regression / no-staff.ly
1 \version "2.3.8"
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 \score {
11    { c4 d4 e8 d8 }
12   \paper {
13     raggedright = ##t
14     \context {
15       \Staff
16       \remove Staff_symbol_engraver
17       \consists Pitch_squash_engraver
18       \remove Clef_engraver
19     }
20   }
21 }
22
23