]> git.donarmstrong.com Git - lilypond.git/blobdiff - input/test/beam-position.ly
release: 1.3.146
[lilypond.git] / input / test / beam-position.ly
index 003639f3808d3c60134b8b6f8bd0a21627db1d66..33726b736c88e1f4e1f8b38c2c57275571fccffd 100644 (file)
@@ -1,22 +1,15 @@
-\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}.
-";
+\version "1.3.146"
+
+
+fragment = \notes {
+  \property Voice.Beam \set #'staff-position = #2
+  \property Voice.Beam \set #'height = #-2
+  [c'8 c]
 }
-\version "1.3.110";
 
-\score { 
-  \context Voice \notes\relative c {
-    [f8 f]  [f64 f] \grace { [f8 e8] }
-       \property Grace.Stem \override #'no-stem-extend = ##t
-       [f8 f]
-       
-  }
-  \paper {
-    linewidth=-1.0;
-  }  
-  \midi { }
+\paper { linewidth = -1. } 
+
+\score {
+  \notes\relative c \fragment
+  \paper { }  
 }