]> git.donarmstrong.com Git - lilypond.git/blob - input/regression/beam-manual-beaming.ly
* lily/beam-engraver.cc (acknowledge_grob): set melismata for new
[lilypond.git] / input / regression / beam-manual-beaming.ly
1 \header {
2 texidoc =  
3 "Beaming can be overidden for individual stems."
4 }
5 \score {
6 \notes \relative c'' {
7   c32-[ c
8
9
10 %% WARNING: #'beaming is written, so this
11 %% property can not be shared between objects. Always use
12 %%  \once.
13 %%
14
15
16   \once \property Voice.Stem \override
17    #'beaming = #(cons (list   1 2) (list 0 2 4))
18 c
19   \once \property Voice.Stem \override
20    #'beaming = #(cons (list 0 2 4) (list 0 1 4))
21 c c c]
22 }
23 \paper{ linewidth = -1.0 }
24 }