]> git.donarmstrong.com Git - lilypond.git/blob - input/regression/beam-position.ly
release: 1.3.146
[lilypond.git] / input / regression / beam-position.ly
1 \version "1.3.146"
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] \grace { [f8 e8] }
15         \property Grace.Stem \override #'no-stem-extend = ##t
16         [f8 f]
17         
18   }
19   \paper {
20     linewidth=-1.0
21   }  
22   \midi { }
23 }