]> git.donarmstrong.com Git - lilypond.git/blob - input/regression/beam-position.ly
* lily/beam-engraver.cc: move new-beam-event to beam-event
[lilypond.git] / input / regression / beam-position.ly
1
2 \version "1.9.1"
3 \header{
4 texidoc="
5 Beams should always reach the middle staff line.  The second beam
6 counting from the note head side, should never be lower than the
7 second staff line.  This does not hold for grace note beams.
8 Override with @code{noStemExtend}.
9 "
10 }
11
12
13 \score { 
14   \context Voice \notes\relative c {
15      f8[ f]   f64[ f] 
16     \grace { 
17        f8[ e8] 
18       \property Voice.Stem \override #'no-stem-extend = ##f
19        f8[ e8] 
20       \property Voice.Stem \revert #'no-stem-extend
21     }
22          f8[ f]
23         
24   }
25   \paper {
26     raggedright = ##t
27   }  
28   \midi { }
29 }