]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/new/grouping-beats.ly
0f0939928a9cffd5eeef2467620c71d3532ba5ab
[lilypond.git] / Documentation / snippets / new / grouping-beats.ly
1 \version "2.13.4"
2
3 \header {
4   lsrtags = "rhythms"
5   texidoc = "
6 Beaming patterns may be altered with the @code{beatGrouping} property:
7
8 "
9   doctitle = "Grouping beats"
10 }
11
12 \relative c'' {
13   \time 5/16
14   \overrideBeamSettings #'Score #'(5 . 16) #'end
15     #'((* . (2 3)))
16   c8^"(2+3)" c16 c8
17   \overrideBeamSettings #'Score #'(5 . 16) #'end
18     #'((* . (3 2)))
19   c8^"(3+2)" c16 c8
20 }