]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/grouping-beats.ly
Modify autobeam and grouping properties
[lilypond.git] / Documentation / snippets / grouping-beats.ly
1 %% Do not edit this file; it is auto-generated from input/new
2 %% This file is in the public domain.
3 %% Note: this file works from version 2.13.4
4 \version "2.13.4"
5
6 \header {
7 %% Translation of GIT committish: b2d4318d6c53df8469dfa4da09b27c15a374d0ca
8   texidoces = "
9 Los patrones de barrado se pueden alterar con la propiedad
10 @code{beatGrouping}:
11
12 "
13   doctitlees = "Agrupar los pulsos"
14   
15 %% Translation of GIT committish: d96023d8792c8af202c7cb8508010c0d3648899d
16 texidocde = "
17 Balkengruppen können mit der @code{beatGrouping}-Eigenschaft geändert
18 werden:
19
20 "
21   doctitlede = "Notengruppen"
22
23
24 %% Translation of GIT committish: b3196fadd8f42d05ba35e8ac42f7da3caf8a3079
25   texidocfr = "
26 La manière de gérer les ligatures est influencée par la propriété 
27 @code{beatGrouping} :
28
29 "
30   doctitlefr = "Regroupement selon la pulsation"
31
32   lsrtags = "rhythms"
33
34   texidoc = "
35 Beaming patterns may be altered with the @code{beatGrouping} property:
36
37 "
38   doctitle = "Grouping beats"
39 } % begin verbatim
40
41
42 \relative c'' {
43   \time 5/16
44   \overrideBeamSettings #'Score #'(5 . 16) #'end
45      #'((* . (2 3)))
46   c8^"(2+3)" c16 c8
47   \overrideBeamSettings #'Score #'(5 . 16) #'end
48      #'((* . (3 2)))
49   c8^"(3+2)" c16 c8
50 }
51
52