]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/beam-grouping-in-7-8-time.ly
Imported Upstream version 2.16.0
[lilypond.git] / Documentation / snippets / beam-grouping-in-7-8-time.ly
1 %% DO NOT EDIT this file manually; it is automatically
2 %% generated from LSR http://lsr.dsi.unimi.it
3 %% Make any changes in LSR itself, or in Documentation/snippets/new/ ,
4 %% and then run scripts/auxiliar/makelsr.py
5 %%
6 %% This file is in the public domain.
7 \version "2.16.0"
8
9 \header {
10   lsrtags = "rhythms"
11
12   texidoc = "
13 There are no default automatic beam groupings specified for 7/8 time,
14 so if automatic beams are required the grouping must be specified using
15 <code>beatStructure</code>.  For example, to  group all beams 2-3-2 in
16 7/8 time, specify beam endings at 2/8 and 5/8:
17
18 "
19   doctitle = "Beam grouping in 7/8 time"
20 } % begin verbatim
21
22 \relative c'' {
23   \time 7/8
24   % rhythm 2-3-2
25   a8 a a a a a a
26   \set Score.beatStructure = #'(2 3 2)
27   a8 a a a a a a
28 }