]> git.donarmstrong.com Git - lilypond.git/blob - input/lsr/automatic-beam-subdivisions.ly
Merge commit 'origin/dev/jneeman' into systems-per-page
[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.13.0"
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 \new Staff {
26   \relative c'' {
27     <<
28       {
29         \voiceOne
30         \set subdivideBeams = ##t
31         b32[ a g f c' b a g
32         b32^"subdivide beams" a g f c' b a g]
33       }
34       \new Voice {
35         \voiceTwo
36         b32_"default"[ a g f c' b a g
37         b32 a g f c' b a g]
38       }
39     >>
40     \oneVoice
41     \set beatLength = #(ly:make-moment 1 8)
42     b32^"beatLength 1 8"[ a g f c' b a g]
43     \set beatLength = #(ly:make-moment 1 16)
44     b32^"beatLength 1 16"[ a g f c' b a g]
45   }
46 }