]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/automatic-beam-subdivisions.ly
LSR updates from tarball
[lilypond.git] / Documentation / snippets / automatic-beam-subdivisions.ly
1 %% DO NOT EDIT this file manually; it is automatically
2 %% generated from LSR http://lsr.dsi.unimi.it
3 %% Make any changes in LSR itself, or in Documentation/snippets/new/ ,
4 %% and then run scripts/auxiliar/makelsr.py
5 %%
6 %% This file is in the public domain.
7 \version "2.14.2"
8
9 \header {
10   lsrtags = "automatic-notation, rhythms, connecting-notes"
11
12 %% Translation of GIT committish: b482c3e5b56c3841a88d957e0ca12964bd3e64fa
13   texidoces = "
14 Se pueden subdividir las barras automáticamente.  Estableciendo la
15 propiedad @code{subdivideBeams}, las barras se subdividen en
16 posiciones de pulso (tal y como se especifica en @code{beatLength}).
17
18 "
19   doctitlees = "Subdivisiones de barra automáticas"
20
21 %% Translation of GIT committish: 85394d425536d267ed0cb71d17023849f1611180
22   texidocfr = "
23 Dès lors que la propriété @code{subdivideBeams} aura été activée, une
24 ligature sera subdivisée selon les préceptes de @code{beatLength}.
25
26 "
27   doctitlefr = "Subdivision de ligatures automatiques"
28
29   texidoc = "
30 Beams can be subdivided automatically.  By setting the property
31 @code{subdivideBeams}, beams are subdivided at beat positions (as
32 specified in @code{baseMoment}).
33
34 "
35   doctitle = "Automatic beam subdivisions"
36 } % begin verbatim
37
38 \new Staff {
39   \relative c'' {
40     <<
41       {
42         \voiceOne
43         \set subdivideBeams = ##t
44         b32[ a g f c' b a g
45         b32^"subdivide beams" a g f c' b a g]
46       }
47       \new Voice {
48         \voiceTwo
49         b32_"default"[ a g f c' b a g
50         b32 a g f c' b a g]
51       }
52     >>
53     \oneVoice
54     \set baseMoment = #(ly:make-moment 1 8)
55     \set beatStructure = #'(2 2 2 2)
56     b32^"baseMoment 1 8"[ a g f c' b a g]
57     \set baseMoment = #(ly:make-moment 1 16)
58     \set beatStructure = #'(4 4 4 4)
59     b32^"baseMoment 1 16"[ a g f c' b a g]
60   }
61 }
62