]> git.donarmstrong.com Git - lilypond.git/blob - input/test/beam-count.ly
Added texidoc index.
[lilypond.git] / input / test / beam-count.ly
1 \version "1.7.18"
2 \header{
3         texidoc="@cindex Beam Count
4 You can alter the number of stems in a beam.  Here we see
5 two sets of four 32nds joined as if they were 8th notes.
6 " }
7
8 fragment = \notes {
9   f'32 g a b b a g f
10
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
16   \property Voice.stemRightBeamCount = #1 b
17   \property Voice.stemLeftBeamCount = #1 b
18   a g f
19 }
20
21 \paper { raggedright = ##t} 
22
23 \score {
24   \notes\relative c \fragment
25   \paper { raggedright = ##t}  
26 }
27 %% new-chords-done %%