Revised autobeam settings patch and ran makelsr.py
[lilypond/mpolesky.git] / Documentation / snippets / automatic-beam-subdivisions.ly
blobd77e6e1c20cc88e4947be1dbe98928414efb0221
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.29
5 \version "2.13.29"
7 \header {
8 %% Translation of GIT committish: 0b55335aeca1de539bf1125b717e0c21bb6fa31b
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}).
15 doctitlees = "Subdivisiones de barra automáticas"
17 lsrtags = "rhythms"
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}).
25 doctitle = "Automatic beam subdivisions"
26 } % begin verbatim
29 \new Staff {
30 \relative c'' {
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]
38 \new Voice {
39 \voiceTwo
40 b32_"default"[ a g f c' b a g
41 b32 a g f c' b a g]
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]