]> git.donarmstrong.com Git - lilypond.git/blob - input/test/blank-paper.ly
* lily/bar-line.cc (compound_barline): fix : for staff without
[lilypond.git] / input / test / blank-paper.ly
1 \version "2.3.8"
2 \header {
3   texidoc="@cindex Blank Paper
4
5 A blank music paper can be produced also by using invisible notes, and removing
6 @code{Bar_number_engraver}.
7
8 " }
9
10
11 \new Score \with {
12     \override TimeSignature #'transparent = ##t
13     \override NoteHead #'transparent = ##t
14     defaultBarType = #""
15     \remove Bar_number_engraver
16 } {
17     %% \clef treble
18     \clef bass 
19     \repeat unfold 3 { c1 \break }
20 }
21
22