]> git.donarmstrong.com Git - lilypond.git/blob - input/test/beam-count.ly
53cf9e68f34421b6175cd5ea18c2110aad6ba569
[lilypond.git] / input / test / beam-count.ly
1 \version "1.7.18"
2 \header{
3         texidoc="@cindex Beam Count
4
5 You can alter the number of stems in a beam.  Here we see
6 two sets of four 32nds joined as if they were 8th notes.
7
8 " }
9
10 fragment = \notes {
11   \property Voice.autoBeamSettings
12     \set #'(end * * * *) = #(ly:make-moment 1 4)
13   f32 g a b b a g f
14
15   f32 g a b 
16   \property Voice.stemRightBeamCount = #1  b
17   \property Voice.stemLeftBeamCount = #1 a
18    g f
19 }
20
21
22 \score {
23   \notes\relative c \fragment
24   \paper { raggedright = ##t}  
25 }
26