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