]> git.donarmstrong.com Git - lilypond.git/blob - input/test/blank-paper-tab.ly
* scripts/convert-ly.py (conv): remove \notes.
[lilypond.git] / input / test / blank-paper-tab.ly
1 \version "2.3.4"
2 \header {
3     
4 texidoc = "@cindex Blank Paper Tab
5 A blank music paper can be produced by using spacer rests, and removing
6 @code{Bar_number_engraver}. Here is an empty staff with a tablature staff. 
7 " }
8
9 emptymusic =  { \repeat unfold 4  { s1\break }  \bar "|." }
10
11 \score  {
12   <<
13         \context Staff \emptymusic
14         \context TabStaff \emptymusic
15         >>
16
17
18   \paper {
19     \context {
20       \Score
21       \remove Bar_number_engraver
22     }
23   }
24 }
25