]> git.donarmstrong.com Git - lilypond.git/blob - input/test/blank-paper-tab.ly
b21156cdd798dc8ef50b1b617e397aeccb31f535
[lilypond.git] / input / test / blank-paper-tab.ly
1 \version "2.1.22"
2 \header {
3     
4 texidoc = "@cindex Blank Paper Tab
5 Blank music paper, another example: empty staffs and a
6 tablature staff. " }
7
8 emptymusic = \notes { \repeat unfold 4  { s1\break }  \bar "|." }
9
10 \score  {
11 \notes  <<
12         \context Staff \emptymusic
13         \context TabStaff \emptymusic
14         >>
15
16
17   \paper {
18     \translator {
19       \ScoreContext
20       \remove Bar_number_engraver
21     }
22   }
23 }
24