]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/new/beam-grouping-in-7-8-time.ly
Imported Upstream version 2.14.2
[lilypond.git] / Documentation / snippets / new / beam-grouping-in-7-8-time.ly
1 \version "2.14.0"
2
3 \header {
4   lsrtags = "rhythms"
5   texidoc = "
6 There is no default beat structure specified for 7/8 time,
7 so if automatic beams are required the structure must be specified.  For
8 example, to group all beams 2-3-2 in 7/8 time, specify the
9 beat structure to be (2 3 2):
10 "
11   doctitle = "Beam grouping in 7/8 time"
12 }
13
14 \relative c'' {
15   \time 7/8
16   % rhythm 2-3-2
17   a8 a a a a a a
18   \set Score.beatStructure = #'(2 3 2)
19   a8 a a a a a a
20 }