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