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