]> git.donarmstrong.com Git - lilypond.git/blob - input/lsr/automatic-beam-subdivisions.ly
Merge commit 'ce4b499'
[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 \version "2.11.38"
4
5 \header {
6   lsrtags = "rhythms"
7  texidoc = "
8 Lilypond can subdivide beams automatically. Set the property
9 subdivideBeams, and beams are subdivided at beat positions (as
10 specified in beat length)
11 " }
12 % begin verbatim
13 \relative{ b'32^"default"[ a g f c' b a g f e d' c b a g f ]
14                \set subdivideBeams = ##t
15                b32^"subdivision enabled"[ a g f c' b a g f e d' c b a g f ] 
16                \set Score.beatLength = #(ly:make-moment 1 8)
17                b32^"beatLength 1 8"[ a g f c' b a g f e d' c b a g f ]
18                \set Score.beatLength = #(ly:make-moment 1 16)
19                b32^"beatLength 1 16"[ a g f c' b a g f e d' c b a g f ]
20     }
21