]> git.donarmstrong.com Git - lilypond.git/blob - input/test/auto-beam-4-8.ly
14c8b3a41283233289abaf9a691c4c93b33b4f5a
[lilypond.git] / input / test / auto-beam-4-8.ly
1
2 \version "1.3.117";
3
4 \score{
5    \notes\relative c''{
6      \time 4/8;
7
8 %{
9     the default for 4/8 (see scm/auto-beam.scm)
10      ----  --------
11      |  |  |   |--|
12     x| x| x|  x| x|
13 %}
14      c8 c c c16 c
15
16
17 %{
18     user override
19      --------------
20      |  |  |   |--|
21     x| x| x|  x| x|
22 %}
23      %\property Voice.beamAutoEnd = #(make-moment 2 4)
24      \property Voice.autoBeamSettings \override #'(end * * * *) = #(make-moment 2 4)
25      c8 c c c16 c
26
27   }
28 }
29