]> git.donarmstrong.com Git - lilypond.git/blob - input/test/beam-control.ly
patch::: 1.3.134.jcn1
[lilypond.git] / input / test / beam-control.ly
1
2 \score { 
3   \context Voice \notes\relative c {
4     % beam-control.fly
5         
6         % from upper staffline (position 4) to centre (position 0)
7         \property Voice.beamVerticalPosition = #4
8         \property Voice.beamHeight = #-4
9         [c'8 c] 
10         
11         % from center to one above centre (position 2)
12         \property Voice.beamVerticalPosition = #0
13         \property Voice.beamHeight = #2
14         [c c]
15         
16         % normal beam-algorithm
17         \property Voice.beamHeight = ##f
18         \property Voice.beamVerticalPosition = ##f
19         [c e] [e c]
20         
21   }
22   \paper { }  
23   \midi { }
24 }