]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/reverting-default-beam-endings.ly
Doc: Update LSR.
[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.18"
6
7 \header {
8 %% Translation of GIT committish: d2119a9e5e951c6ae850322f41444ac98d1ed492
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: 0a868be38a775ecb1ef935b079000cebbc64de40
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: 548076f550a2b7fb09f1260f0e5e2bb028ad396c
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 }