]> git.donarmstrong.com Git - lilypond.git/blob - input/lsr/reverting-default-beam-endings.ly
Doc-es: pre-merge update of texidoc committishes.
[lilypond.git] / input / lsr / 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   lsrtags = "rhythms"
7
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 :<0364058d18eb91836302a567c18289209d6e9706> 
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   texidoc = "
28 To typeset beams grouped @code{3-4-3-2} in 12/8 it is necessary first
29 to override the default beam endings  in 12/8, and then to set up the
30 new beaming endings: 
31
32 "
33   doctitle = "Reverting default beam endings"
34 } % begin verbatim
35
36 \relative c'' {
37   \time 12/8
38
39   % Default beaming
40   a8 a a a a a a a a a a a
41
42   % Revert default values in scm/auto-beam.scm for 12/8 time
43   #(revert-auto-beam-setting '(end * * 12 8) 3 8)
44   #(revert-auto-beam-setting '(end * * 12 8) 3 4)
45   #(revert-auto-beam-setting '(end * * 12 8) 9 8)
46   a8 a a a a a a a a a a a
47
48   % Set new values for beam endings
49   #(override-auto-beam-setting '(end * * 12 8) 3 8)
50   #(override-auto-beam-setting '(end * * 12 8) 7 8)
51   #(override-auto-beam-setting '(end * * 12 8) 10 8)
52   a8 a a a a a a a a a a a
53 }