]> git.donarmstrong.com Git - lilypond.git/blob - input/lsr/automatic-beam-subdivisions.ly
Merge branch 'dev/mf2pt1-build' of git://git.sv.gnu.org/lilypond
[lilypond.git] / input / lsr / automatic-beam-subdivisions.ly
1 %% Do not edit this file; it is auto-generated from LSR http://lsr.dsi.unimi.it
2 %% This file is in the public domain.
3 %% Tags: rhythms
4 \version "2.11.35"
5
6 \header { texidoc = "
7 Lilypond can subdivide beams automatically. Set the property
8 subdivideBeams, and beams are subdivided at beat positions (as
9 specified in beat length)
10 " }
11 % begin verbatim
12 \relative{ b'32^"default"[ a g f c' b a g f e d' c b a g f ]
13                \set subdivideBeams = ##t
14                b32^"subdivision enabled"[ a g f c' b a g f e d' c b a g f ] 
15                \set Score.beatLength = #(ly:make-moment 1 8)
16                b32^"beatLength 1 8"[ a g f c' b a g f e d' c b a g f ]
17                \set Score.beatLength = #(ly:make-moment 1 16)
18                b32^"beatLength 1 16"[ a g f c' b a g f e d' c b a g f ]
19     }
20