]> git.donarmstrong.com Git - lilypond.git/blobdiff - input/test/partial-blank.ly
* scripts/convert-ly.py (conv): remove \notes.
[lilypond.git] / input / test / partial-blank.ly
index 80ae96945f7002d402a9afdfce51ddb289667682..473775d0169a528d4f508a29499e5103ed8e98bd 100644 (file)
@@ -1,5 +1,5 @@
 
-\version "2.2.0"
+\version "2.3.4"
 % check with invisible-notes or blank-notes.  possible rename. -gp
 \header{ texidoc = "@cindex Partial Blank
 When entering partially typeset music (i.e. for students to be 
@@ -8,14 +8,14 @@ timing of notes: all measures have same length, etc.  It can be
 implemented by adding an invisible staff with a lot of fast notes. "
 }
 
-quickmeasure = \notes {
+quickmeasure =  {
     \repeat unfold 16 c''16
 }
 
-mel = \notes \relative c' {c16 d16 e8 a4 g2 e8 d c2. g'1 e4 d c2}
+mel =  \relative c' {c16 d16 e8 a4 g2 e8 d c2. g'1 e4 d c2}
 
 \score {
-\context PianoStaff \notes <<
+\context PianoStaff  <<
   \new Staff <<
     \clef G
     \new Voice {\mel}
@@ -26,7 +26,7 @@ mel = \notes \relative c' {c16 d16 e8 a4 g2 e8 d c2. g'1 e4 d c2}
         \repeat unfold 4 \quickmeasure
     }
   >>
-  \new Staff \notes {\clef F s1*4}
+  \new Staff  {\clef F s1*4}
 >>
 \paper {}
 }