]> git.donarmstrong.com Git - lilypond.git/blob - input/regression/beam-position.ly
patch::: 1.3.134.jcn1
[lilypond.git] / input / regression / beam-position.ly
1 \header{
2 texidoc="
3 Beams should always reach the middle staff line.  The second beam
4 counting from the note head side, should never be lower than the
5 second staff line.  This does not hold for grace note beams.
6 Override with @code{noStemExtend}.
7 ";
8 }
9
10
11 \score { 
12   \context Voice \notes\relative c {
13     [f8 f]  [f64 f] \grace { [f8 e8] }
14         \property Grace.Stem \override #'no-stem-extend = ##t
15         [f8 f]
16         
17   }
18   \paper {
19     linewidth=-1.0;
20   }  
21   \midi { }
22 }