Massive changes - see ChangeLog.
[lilypond.git] / input / regression / beam-manual-beaming.ly
blobc5306c1a668b183204b4fde286e918e6bae488cc
1 #(ly:set-option 'old-relative)
2 \version "1.9.0"
5 \header {
6 texidoc =
7 "Beaming can be overidden for individual stems."
9 \score {
10 \notes \relative c'' {
11 c32-[ c
14 %% WARNING: #'beaming is written, so this
15 %% property can not be shared between objects. Always use
16 %% \once.
20 \once \property Voice.Stem \override
21 #'beaming = #(cons (list 1 2) (list 0 2 4))
23 \once \property Voice.Stem \override
24 #'beaming = #(cons (list 0 2 4) (list 0 1 4))
25 c c c]
27 \paper{ linewidth = -1.0 }