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