]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/reverting-default-beam-endings.ly
bab4aa31254c32fc770714b4b3c25101b6aa2f41
[lilypond.git] / Documentation / snippets / reverting-default-beam-endings.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.13.1"
4
5 \header {
6 %% Translation of GIT committish: bee31293920d834cd3698f00ddcc2402c3164619
7   texidocfr = "
8 Pour obtenir des ligatures en groupes de @code{3-4-3-2} croches, dans
9 une mesure à 12/8, il faudra préalablement annuler les réglages par
10 défaut relatifs à 12/8, puis ajouter nos propres règles :
11
12 "
13   doctitlefr = "Annulation des règles de ligature par défaut"
14
15   lsrtags = "rhythms"
16
17 %% Translation of GIT committish: b2d4318d6c53df8469dfa4da09b27c15a374d0ca
18   texidoces = "
19 Para tipografiar las barras agrupadas en la forma @code{3-4-3-2}
20 en 12/8, en primer lugar tenemos que sobreescribir los finales de
21 barra predeterminados en 12/8, y después preparar los finales de
22 barra nuevos:
23
24 "
25   doctitlees = "Alteración de los finales de barra predeterminados"
26
27
28 %% Translation of GIT committish: d96023d8792c8af202c7cb8508010c0d3648899d
29   texidocde = "
30 Um Balken im 12/8-Takt als @code{3-4-3-2} zu gruppieren, muss man zuerst die
31 Standardwerte für die Balken im 12/8-Takt rückgängig machen und dann die neuen
32 Werte setzen:
33
34 "
35   doctitlede = "Standard-Balkenwerte rückgängig machen"
36
37
38
39   texidoc = "
40 To typeset beams grouped @code{3-4-3-2} in 12/8 it is necessary first
41 to override the default beam endings  in 12/8, and then to set up the
42 new beaming endings: 
43
44 "
45   doctitle = "Reverting default beam endings"
46 } % begin verbatim
47
48 \relative c'' {
49   \time 12/8
50
51   % Default beaming
52   a8 a a a a a a a a a a a
53
54   % Revert default values in scm/auto-beam.scm for 12/8 time
55   #(revert-auto-beam-setting '(end * * 12 8) 3 8)
56   #(revert-auto-beam-setting '(end * * 12 8) 3 4)
57   #(revert-auto-beam-setting '(end * * 12 8) 9 8)
58   a8 a a a a a a a a a a a
59
60   % Set new values for beam endings
61   #(override-auto-beam-setting '(end * * 12 8) 3 8)
62   #(override-auto-beam-setting '(end * * 12 8) 7 8)
63   #(override-auto-beam-setting '(end * * 12 8) 10 8)
64   a8 a a a a a a a a a a a
65 }
66