]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/automatic-beam-subdivisions.ly
Docs: run convert-ly for 2.14.0.
[lilypond.git] / Documentation / snippets / automatic-beam-subdivisions.ly
1 % DO NOT EDIT this file manually; it is automatically
2 % generated from Documentation/snippets/new
3 % Make any changes in Documentation/snippets/new/
4 % and then run scripts/auxiliar/makelsr.py
5 %
6 % This file is in the public domain.
7 %% Note: this file works from version 2.13.36
8 \version "2.14.0"
9
10 \header {
11 %% Translation of GIT committish: 59caa3adce63114ca7972d18f95d4aadc528ec3d
12   texidoces = "
13 Se pueden subdividir las barras automáticamente.  Estableciendo la
14 propiedad @code{subdivideBeams}, las barras se subdividen en
15 posiciones de pulso (tal y como se especifica en @code{beatLength}).
16
17 "
18   doctitlees = "Subdivisiones de barra automáticas"
19
20   lsrtags = "rhythms"
21
22   texidoc = "
23 Beams can be subdivided automatically.  By setting the property
24 @code{subdivideBeams}, beams are subdivided at beat positions (as
25 specified in @code{baseMoment}).
26
27 "
28   doctitle = "Automatic beam subdivisions"
29 } % begin verbatim
30
31
32 \new Staff {
33   \relative c'' {
34     <<
35       {
36         \voiceOne
37         \set subdivideBeams = ##t
38         b32[ a g f c' b a g
39         b32^"subdivide beams" a g f c' b a g]
40       }
41       \new Voice {
42         \voiceTwo
43         b32_"default"[ a g f c' b a g
44         b32 a g f c' b a g]
45       }
46     >>
47     \oneVoice
48     \set baseMoment = #(ly:make-moment 1 8)
49     \set beatStructure = #'(2 2 2 2)
50     b32^"baseMoment 1 8"[ a g f c' b a g]
51     \set baseMoment = #(ly:make-moment 1 16)
52     \set beatStructure = #'(4 4 4 4)
53     b32^"baseMoment 1 16"[ a g f c' b a g]
54   }
55 }
56