]> git.donarmstrong.com Git - lilypond.git/blob - input/test/beam-auto-4-8.ly
fix keep-inside-line on the left side (issue #130)
[lilypond.git] / input / test / beam-auto-4-8.ly
1
2 %% \version "2.7.39"
3
4 %% keep for now, although merging into beam-auto-override is a possibility.
5 \header {
6         texidoc = "@cindex Auto Beaming 4/8
7 You can override the automatic beaming settings.
8 "
9 }
10
11 \layout{ragged-right = ##t}
12
13 \relative c''{
14   \time 4/8
15
16 %{
17     the default for 4/8 (see scm/auto-beam.scm)
18      ----  --------
19      |  |  |   |--|
20     x| x| x|  x| x|
21 %}
22   c8 c c c16 c
23
24 %{
25     user override
26      --------------
27      |  |  |   |--|
28     x| x| x|  x| x|
29 %}
30   %% This has now (2.5.21) changed, (end * * * *) no longer
31   %% masks the default config entry ('(end * * 4 8) 1 4))
32   %% rather than masking by override:
33   %% #(override-auto-beam-setting '(end * * * *) 2 4)
34   %% revert the config file setting.
35   #(revert-auto-beam-setting '(end * * 4 8) 1 4)
36   c8 c c c16 c
37 }
38     
39