]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/strict-beat-beaming.ly
Add '-dcrop' option to ps and svg backends
[lilypond.git] / Documentation / snippets / strict-beat-beaming.ly
1 %% DO NOT EDIT this file manually; it is automatically
2 %% generated from LSR http://lsr.di.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.18.0"
8
9 \header {
10   lsrtags = "rhythms"
11
12   texidoc = "
13 Beamlets can be set to point in the direction of the beat to which they
14 belong.  The first beam avoids sticking out flags (the default); the
15 second beam strictly follows the beat.
16
17 "
18   doctitle = "Strict beat beaming"
19 } % begin verbatim
20
21 \relative c'' {
22   \time 6/8
23   a8. a16 a a
24   \set strictBeatBeaming = ##t
25   a8. a16 a a
26 }