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