]> git.donarmstrong.com Git - lilypond.git/blobdiff - input/regression/beam-position.ly
* scripts/convert-ly.py (conv): remove \notes.
[lilypond.git] / input / regression / beam-position.ly
index 88f5749d5b77b705aa4a259181592cf1adc8831c..60bf2897c8d22605dfee2e14a54ab769c8ad8a42 100644 (file)
@@ -1,22 +1,29 @@
+
+\version "2.3.4"
 \header{
-texidoc="
-Beams should always reach the middle staff line.  The second beam
-counting from the note head side, should never be lower than the
-second staff line.  This does not hold for grace note beams.
-Override with @code{noStemExtend}.
-";
+
+texidoc=" Beams on ledgered notes should always reach the middle staff
+line.  The second beam counting from the note head side, should never
+be lower than the second staff line.  This does not hold for grace
+note beams.  Override with @code{no-stem-extend}.  "
+
 }
-\version "1.3.117";
+
 
 \score { 
-  \context Voice \notes\relative c {
-    [f8 f]  [f64 f] \grace { [f8 e8] }
-       \property Grace.Stem \override #'no-stem-extend = ##t
-       [f8 f]
+  \context Voice \relative c {
+     f8[ f]   f64[ f] 
+     \grace { 
+       f8[ e8] 
+      \override Stem  #'no-stem-extend = ##f
+       f8[ e8] 
+      \revert Stem #'no-stem-extend
+    }
+        f8[ f]
        
   }
   \paper {
-    linewidth=-1.0;
+    raggedright = ##t
   }  
   \midi { }
 }