]> git.donarmstrong.com Git - lilypond.git/blob - input/lsr/automatic-beam-subdivisions.ly
Make the length of beamlets configurable.
[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.64"
4
5 \header {
6   lsrtags = "rhythms"
7
8   texidoces = "
9 Se pueden subdividir las barras automáticamente.  Estableciendo la
10 propiedad @code{subdivideBeams}, las barras se subdividen en
11 posiciones de pulso (tal y como se especifica en @code{beatLength}).
12
13 "
14   doctitlees = "Subdivisiones de barra automáticas"
15
16   texidoc = "
17 Beams can be subdivided automatically.  By setting the property
18 @code{subdivideBeams}, beams are subdivided at beat positions (as
19 specified in @code{beatLength}). 
20
21 "
22   doctitle = "Automatic beam subdivisions"
23 } % begin verbatim
24
25 \score {
26   \new Staff \relative c'' {
27     << {
28       \voiceOne
29       \set subdivideBeams = ##t
30       b32[ a g f c' b a g b^"subdivide beams" a g f c' b a g]
31       \oneVoice
32     }
33     \new Voice {
34       \voiceTwo
35       b32_"default"[ a g f c' b a g b a g f c' b a g]
36     } >>
37     \set beatLength = #(ly:make-moment 1 8)
38     b32^"beatLength 1 8"[ a g f c' b a g]
39     \set beatLength = #(ly:make-moment 1 16)
40     b32^"beatLength 1 16"[ a g f c' b a g]
41   }
42 }
43