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