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