]> git.donarmstrong.com Git - lilypond.git/blob - input/regression/auto-beam-exceptions.ly
Fixed errors in Catalan translation
[lilypond.git] / input / regression / auto-beam-exceptions.ly
1 \version "2.16.0"
2
3 \header {
4
5   doctitle = "beamExceptions"
6
7   texinfo = "beamExceptions is used to modify the automatic beaming for certain durations;
8   the expected grouping is given after the note duration"
9
10 }
11
12 \relative c' {
13   \time 2/4
14   \set Score.beamExceptions = #'(
15     ( end .
16       (
17         ( (1 . 32) . (4 4 4 4) )
18       )
19     )
20   )
21   \repeat unfold 16 c32
22   \time 3/4
23   \set Score.beamExceptions = #'(
24     ( end .
25       (
26         ( (1 . 32) . (4 4 4 4 4 4) )
27       )
28     )
29   )
30   \repeat unfold 24 c32
31   c8 c32 c32 c32 c32 c16 c16 c32 c32 c32 c32 c16 c32 c32 c32 c32 c32 c32
32   \time 4/4
33   \set Score.beamExceptions = #'(
34     ( end .
35       (
36         ( (1 . 32) . (4 4 4 4 4 4 4 4) )
37       )
38     )
39   )
40   \repeat unfold 32 c32
41   \time 6/8
42   \set Score.beamExceptions = #'(
43     ( end .
44       (
45         ( (1 . 32) . (4 4 4 4 4 4) )
46       )
47     )
48   )
49   \repeat unfold 24 c32
50 }