]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/new/beam-grouping-in-7-8-time.ly
Doc-de: translating snippets and correcting German assignment
[lilypond.git] / Documentation / snippets / new / beam-grouping-in-7-8-time.ly
1 \version "2.13.4"
2
3 \header {
4   lsrtags = "rhythms"
5   texidoc = "
6 There are no default automatic beam groupings specified for 7/8 time,
7 so if automatic beams are required the grouping must be specified.  For
8 example, to group all beams 2-3-2 in 7/8 time, specify beam endings at
9 2/8 and 5/8:
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   \overrideBeamSettings #'Score #'(7 . 8) #'end
19     #'((* . (2 3 2)))
20   a8 a a a a a a
21 }