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