]> git.donarmstrong.com Git - lilypond.git/blob - input/test/auto-beam-4-8.ly
Added texinfo index tags.
[lilypond.git] / input / test / auto-beam-4-8.ly
1 \version "1.7.18"
2 \header {
3         texidoc = "@cindex Auto Beaming 4/8
4 You can override Lilypond's automatic beaming."
5 }
6
7 \score{
8    \notes\relative c''{
9      \time 4/8
10
11 %{
12     the default for 4/8 (see scm/auto-beam.scm)
13      ----  --------
14      |  |  |   |--|
15     x| x| x|  x| x|
16 %}
17      c8 c c c16 c
18
19
20 %{
21     user override
22      --------------
23      |  |  |   |--|
24     x| x| x|  x| x|
25 %}
26      \property Voice.autoBeamSettings \override #'(end * * * *) = #(ly:make-moment 2 4)
27      c8 c c c16 c
28
29   }
30 }
31     
32 %% new-chords-done %%