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