]> git.donarmstrong.com Git - lilypond.git/blob - input/test/auto-beam-4-8.ly
*.ly: Added a newline at the end of the texinfo doc
[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
8 \score{
9    \notes\relative c''{
10      \time 4/8
11
12 %{
13     the default for 4/8 (see scm/auto-beam.scm)
14      ----  --------
15      |  |  |   |--|
16     x| x| x|  x| x|
17 %}
18      c8 c c c16 c
19
20
21 %{
22     user override
23      --------------
24      |  |  |   |--|
25     x| x| x|  x| x|
26 %}
27      \property Voice.autoBeamSettings \override #'(end * * * *) = #(ly:make-moment 2 4)
28      c8 c c c16 c
29
30   }
31 }
32     
33 %% new-chords-done %%