]> git.donarmstrong.com Git - lilypond.git/blob - input/tricks/beam-count.ly
8258679872986c53a14b08de7a17fbc5ff82254d
[lilypond.git] / input / tricks / beam-count.ly
1
2
3 fragment = \notes {
4   f'32 g a b b a g f
5
6   \property Voice.autoBeamSettings
7     \set #'(end * * * *) = #(make-moment 1 4)
8   f32 g a b b a g f
9
10   f32 g a
11   \property Voice.stemRightBeamCount = #1 b
12   \property Voice.stemLeftBeamCount = #1 b
13   a g f
14 }
15
16 \paper { linewidth = -1.; } 
17
18 \score {
19   \notes\relative c \fragment
20   \paper { }  
21 }