]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/reverting-default-beam-endings.ly
Merge branch 'lilypond/translation' of ssh://git.sv.gnu.org/srv/git/lilypond into...
[lilypond.git] / Documentation / snippets / reverting-default-beam-endings.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 Para tipografiar las barras agrupadas en la forma @code{3-4-3-2}
10 en 12/8, en primer lugar tenemos que sobreescribir los finales de
11 barra predeterminados en 12/8, y después preparar los finales de
12 barra nuevos:
13
14 "
15   doctitlees = "Alteración de los finales de barra predeterminados"
16
17
18 %% Translation of GIT committish: d96023d8792c8af202c7cb8508010c0d3648899d
19   texidocde = "
20 Um Balken im 12/8-Takt als @code{3-4-3-2} zu gruppieren, muss man zuerst die
21 Standardwerte für die Balken im 12/8-Takt rückgängig machen und dann die neuen
22 Werte setzen:
23
24 "
25   doctitlede = "Standard-Balkenwerte rückgängig machen"
26
27
28 %% Translation of GIT committish: bee31293920d834cd3698f00ddcc2402c3164619
29   texidocfr = "
30 Pour obtenir des ligatures en groupes de @code{3-4-3-2} croches, dans
31 une mesure à 12/8, il faudra préalablement annuler les réglages par
32 défaut relatifs à 12/8, puis ajouter nos propres règles :
33
34 "
35   doctitlefr = "Annulation des règles de ligature par défaut"
36
37   lsrtags = "rhythms"
38   texidoc = "
39 To typeset beams grouped @code{3-4-3-2} in 12/8 it is no longer
40 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
49 \relative c'' {
50   \time 12/8
51
52   % Default beaming
53   a8 a a a a a a a a a a a
54
55   % Set new values for beam endings
56   \overrideBeamSettings #'Score #'(12 . 8) #'end
57     #'((* . (3 4 3 2)))
58   a8 a a a a a a a a a a a
59
60 }
61