]> git.donarmstrong.com Git - lilypond.git/blob - input/lsr/automatic-beam-subdivisions.ly
Split WWW target in two stages WWW-1 and WWW-2
[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.46"
4
5 \header {
6   lsrtags = "rhythms"
7
8   texidoc = "
9 Beams can be subdivided automatically.  By setting the property
10 @code{subdivideBeams}, beams are subdivided at beat positions (as
11 specified in @code{beatLength}). 
12
13 "
14   doctitle = "Automatic beam subdivisions"
15 } % begin verbatim
16 \score {
17   \new Staff \relative c'' {
18     << {
19       \voiceOne
20       \set subdivideBeams = ##t
21       b32[ a g f c' b a g b^"subdivide beams" a g f c' b a g]
22       \oneVoice
23     }
24     \new Voice {
25       \voiceTwo
26       b32_"default"[ a g f c' b a g b a g f c' b a g]
27     } >>
28     \set beatLength = #(ly:make-moment 1 8)
29     b32^"beatLength 1 8"[ a g f c' b a g]
30     \set beatLength = #(ly:make-moment 1 16)
31     b32^"beatLength 1 16"[ a g f c' b a g]
32   }
33 }
34