]> git.donarmstrong.com Git - lilypond.git/blob - input/test/beam-count.ly
630baa5bdeff421955b33295b231821d80e46d5b
[lilypond.git] / input / test / beam-count.ly
1
2 \version "2.3.17"
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 \paper { raggedright = ##t}  
12
13 \relative {
14   #(override-auto-beam-setting '(end * * * *)  1 4)
15   f32 g a b b a g f
16
17   f32 g a 
18   \set stemRightBeamCount = #1  b
19   \set stemLeftBeamCount = #1 b
20   a g f
21 }