]> git.donarmstrong.com Git - lilypond.git/blob - input/test/beam-count.ly
Merge branch 'origin' into master-hanwen
[lilypond.git] / input / test / beam-count.ly
1
2 %%\version "2.10.0"
3 \header{
4         texidoc="@cindex Beam Count
5
6 You can alter the number of stems in a beam.  In this example,
7 two sets of four 32nds are joined, as if they were 8th notes.
8
9 " }
10
11 \layout { ragged-right = ##t}  
12
13 \relative {
14   %% This has now (2.5.21) changed, (end * * * *) no longer
15   %% masks the default config entry ('(end * * 2 4) 1 4))
16   %% rather than masking by override:
17   %% #(override-auto-beam-setting '(end * * * *) 1 4)
18   %% revert the config file settings.
19   #(revert-auto-beam-setting '(end 1 32 4 4) 1 8)
20   #(revert-auto-beam-setting '(end 1 32 4 4) 3 8)
21   f32 g a b b a g f
22
23   f32 g a 
24   \set stemRightBeamCount = #1  b
25   \set stemLeftBeamCount = #1 b
26   a g f
27 }