]> git.donarmstrong.com Git - lilypond.git/blob - input/test/beam-count.ly
*** empty log message ***
[lilypond.git] / input / test / beam-count.ly
1
2 \version "2.1.28"
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 fragment = \notes {
12   #(override-auto-beam-setting '(end * * * *)  1 4)
13   f32 g a b b a g f
14
15   f32 g a 
16   \set stemRightBeamCount = #1  b
17   \set stemLeftBeamCount = #1 b
18   a g f
19 }
20
21
22 \score {
23   \notes\relative c \fragment
24   \paper { raggedright = ##t}  
25 }
26