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