]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/strict-beat-beaming.ly
Merge branch 'translation' into staging
[lilypond.git] / Documentation / snippets / strict-beat-beaming.ly
1 % DO NOT EDIT this file manually; it is automatically
2 % generated from Documentation/snippets/new
3 % Make any changes in Documentation/snippets/new/
4 % and then run scripts/auxiliar/makelsr.py
5 %
6 % This file is in the public domain.
7 %% Note: this file works from version 2.15.28
8 \version "2.15.28"
9
10 \header {
11   texidoc = "
12 Beamlets can be set to point in the direction of the beat to which they
13 belong.  The first beam avoids sticking out flags (the default);
14 the second beam strictly follows the beat.
15 "
16
17   doctitle = "Strict beat beaming"
18
19   lsrtags = "rhythms"
20 } % begin verbatim
21
22
23
24 \relative c'' {
25   \time 6/8
26   a8. a16 a a
27   \set strictBeatBeaming = ##t
28   a8. a16 a a
29 }