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