]> git.donarmstrong.com Git - lilypond.git/blob - input/test/blank-paper-tab.ly
2d16dc90442067b754a0f7767ad5700948cfd24d
[lilypond.git] / input / test / blank-paper-tab.ly
1 \version "2.1.26"
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 = \notes { \repeat unfold 4  { s1\break }  \bar "|." }
10
11 \score  {
12 \notes  <<
13         \context Staff \emptymusic
14         \context TabStaff \emptymusic
15         >>
16
17
18   \paper {
19     \translator {
20       \ScoreContext
21       \remove Bar_number_engraver
22     }
23   }
24 }
25