]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/new/strict-beat-beaming.ly
Imported Upstream version 2.16.0
[lilypond.git] / Documentation / snippets / new / strict-beat-beaming.ly
1 \version "2.16.0"
2
3 \header {
4   texidoc = "
5 Beamlets can be set to point in the direction of the beat to which they
6 belong.  The first beam avoids sticking out flags (the default);
7 the second beam strictly follows the beat.
8 "
9
10   doctitle = "Strict beat beaming"
11
12   lsrtags = "rhythms"
13 }
14
15
16 \relative c'' {
17   \time 6/8
18   a8. a16 a a
19   \set strictBeatBeaming = ##t
20   a8. a16 a a
21 }