]> git.donarmstrong.com Git - lilypond.git/blob - input/regression/beam-position.ly
Imported Upstream version 2.16.0
[lilypond.git] / input / regression / beam-position.ly
1
2 \version "2.16.0"
3 \header{
4
5   texidoc=" Beams on ledgered notes should always reach the middle staff
6 line.  The second beam, counting from the note head side, should never
7 be lower than the second staff line.  This does not hold for grace
8 note beams.  Override with @code{no-stem-extend}.  "
9
10 }
11
12 \layout {
13   ragged-right = ##t
14 }  
15
16
17 \context Voice \relative c {
18   f8[ f]   f64[ f] 
19   \grace { 
20     f8[ e8] 
21     \override Stem  #'no-stem-extend = ##f
22     f8[ e8] 
23     \revert Stem #'no-stem-extend
24   }
25   f8[ f]
26   
27 }