]> git.donarmstrong.com Git - lilypond.git/blob - input/test/beam-auto-4-8.ly
sed Lilypond to LilyPond.
[lilypond.git] / input / test / beam-auto-4-8.ly
1 \version "1.7.18"
2 % keep for now, although merging into beam-auto-override is a possibility.
3 \header {
4         texidoc = "@cindex Auto Beaming 4/8
5 You can override LilyPond's automatic beaming.
6 "
7 }
8
9 \score{
10    \notes\relative c''{
11      \time 4/8
12
13 %{
14     the default for 4/8 (see scm/auto-beam.scm)
15      ----  --------
16      |  |  |   |--|
17     x| x| x|  x| x|
18 %}
19      c8 c c c16 c
20
21
22 %{
23     user override
24      --------------
25      |  |  |   |--|
26     x| x| x|  x| x|
27 %}
28      \property Voice.autoBeamSettings \override #'(end * * * *) = #(ly:make-moment 2 4)
29      c8 c c c16 c
30
31   }
32 \paper{raggedright = ##t}
33 }
34     
35