]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/automatic-beam-subdivisions.ly
Doc-es: update LSR snippets.
[lilypond.git] / Documentation / snippets / automatic-beam-subdivisions.ly
1 % Do not edit this file; it is automatically
2 % generated from Documentation/snippets/new
3 % This file is in the public domain.
4 %% Note: this file works from version 2.13.36
5 \version "2.13.40"
6
7 \header {
8 %% Translation of GIT committish: 5160eccb26cee0bfd802d844233e4a8d795a1e94
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   lsrtags = "rhythms"
18
19   texidoc = "
20 Beams can be subdivided automatically.  By setting the property
21 @code{subdivideBeams}, beams are subdivided at beat positions (as
22 specified in @code{baseMoment}).
23
24 "
25   doctitle = "Automatic beam subdivisions"
26 } % begin verbatim
27
28
29 \new Staff {
30   \relative c'' {
31     <<
32       {
33         \voiceOne
34         \set subdivideBeams = ##t
35         b32[ a g f c' b a g
36         b32^"subdivide beams" a g f c' b a g]
37       }
38       \new Voice {
39         \voiceTwo
40         b32_"default"[ a g f c' b a g
41         b32 a g f c' b a g]
42       }
43     >>
44     \oneVoice
45     \set baseMoment = #(ly:make-moment 1 8)
46     \set beatStructure = #'(2 2 2 2)
47     b32^"baseMoment 1 8"[ a g f c' b a g]
48     \set baseMoment = #(ly:make-moment 1 16)
49     \set beatStructure = #'(4 4 4 4)
50     b32^"baseMoment 1 16"[ a g f c' b a g]
51   }
52 }
53