]> git.donarmstrong.com Git - lilypond.git/blobdiff - input/test/blank-paper-tab.ly
*** empty log message ***
[lilypond.git] / input / test / blank-paper-tab.ly
index 13a48d058f57bf82cbd4e8643752d818447a4c49..fc068ba9633e8f7c3ecb7fae2f0ce7d5ca12dc29 100644 (file)
@@ -1,22 +1,23 @@
-\version "1.9.8"
+\version "2.3.4"
 \header {
     
 texidoc = "@cindex Blank Paper Tab
-Blank music paper, another example: empty staffs and a
-tablature staff. " }
+A blank music paper can be produced by using spacer rests, and removing
+@code{Bar_number_engraver}. Here is an empty staff with a tablature staff. 
+" }
 
-emptymusic = \notes { \repeat unfold 4  { s1\break }  \bar "|." }
+emptymusic =  { \repeat unfold 4  { s1\break }  \bar "|." }
 
 \score  {
-\notes  <<
+  <<
        \context Staff \emptymusic
        \context TabStaff \emptymusic
        >>
 
 
   \paper {
-    \translator {
-      \ScoreContext
+    \context {
+      \Score
       \remove Bar_number_engraver
     }
   }