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