]> git.donarmstrong.com Git - lilypond.git/blob - input/lsr/beam-grouping-in-7-8-time.ly
Merge branch 'master' into lilypond/translation
[lilypond.git] / input / lsr / beam-grouping-in-7-8-time.ly
1 %% Do not edit this file; it is auto-generated from LSR http://lsr.dsi.unimi.it
2 %% This file is in the public domain.
3 \version "2.11.62"
4
5 \header {
6   lsrtags = "rhythms"
7
8   texidoc = "
9 There are no default automatic beam groupings specified for 7/8 time,
10 so if automatic beams are required the grouping must be specified.  For
11 example, to group all beams 2-3-2 in 7/8 time, specify beam endings at
12 2/8 and 5/8: 
13
14 "
15   doctitle = "Beam grouping in 7/8 time"
16 } % begin verbatim
17 \relative c'' {
18   \time 7/8
19   % rhythm 2-3-2
20   a8 a a a a a a
21   #(override-auto-beam-setting '(end * * 7 8) 2 8)
22   #(override-auto-beam-setting '(end * * 7 8) 5 8)
23   a8 a a a a a a
24 }