]> git.donarmstrong.com Git - lilypond.git/blob - input/regression/beam-position.ly
*** empty log message ***
[lilypond.git] / input / regression / beam-position.ly
1
2 \version "2.1.22"
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
13 \score { 
14   \context Voice \notes\relative c {
15      f8[ f]   f64[ f] 
16      \grace { 
17        f8[ e8] 
18       \override Stem  #'no-stem-extend = ##f
19        f8[ e8] 
20       \revert Stem #'no-stem-extend
21     }
22          f8[ f]
23         
24   }
25   \paper {
26     raggedright = ##t
27   }  
28   \midi { }
29 }