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