]> git.donarmstrong.com Git - lilypond.git/blob - input/lsr/changing-the-time-signature-without-affecting-the-beaming.ly
Doc-es: pre-merge update of texidoc committishes.
[lilypond.git] / input / lsr / changing-the-time-signature-without-affecting-the-beaming.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 La instrucción @code{\time} establece las propiedades
10 @code{timeSignatureFraction}, @code{beatLength}, @code{beatGrouping} y
11 @code{measureLength} en el contexto @code{Timing}, que normalmente
12 tiene el alias @code{Score}.  La modificación del valor de
13 @code{timeSignatureFraction} hace que se imprima la nueva indicación
14 de compás sin que cambie ninguna de las demás propiedades:
15
16 "
17   doctitlees = "Cambio de compás sin afectar al barrado"
18
19
20 %% Translation of GIT committish :<0364058d18eb91836302a567c18289209d6e9706>  
21   texidocde = "
22 Der @code{\\time}-Befehl verändert die Eigenschaften
23 @code{timeSignatureFraction}, @code{beatLength}, @code{beatGrouping}
24 und @code{measureLength} im @code{Timing}-Kontext, welcher normalerweise
25 gleichbedeutend mit @code{Score} ist.  Wenn der Wert von
26 @code{timeSignatureFraction} verändert wird, wird die neue
27 Taktart ausgegeben, ohne die anderen Eigenschaften zu beeinflussen:
28
29 "
30   doctitlede = "Die Taktart verändern ohne die Bebalkung zu beeinflussen"
31
32
33 %% Translation of GIT committish :<e71f19ad847d3e94ac89750f34de8b6bb28611df>  
34   texidocfr = "
35 La commande @code{\time} gère les propriétés
36 @code{timeSignatureFraction}, @code{beatLength}, @code{beatGrouping}
37 et @code{measureLength} dans le contexte @code{Timing}, normallement
38 rattaché à @code{Score}.  Le fait de modifier la valeur de
39 @code{timeSignatureFraction} aura pour effet de changer l'apparence du
40 symbole affiché sans pour autant affecter les autres propriétés de la
41 métrique :
42
43 "
44   doctitlefr = "Changement de métrique sans affecter les règles de ligature"
45
46   texidoc = "
47 The @code{\\time} command sets the properties
48 @code{timeSignatureFraction}, @code{beatLength}, @code{beatGrouping}
49 and @code{measureLength} in the @code{Timing} context, which is
50 normally aliased to @code{Score}. Changing the value of
51 @code{timeSignatureFraction} causes the new time signature symbol to be
52 printed without changing any of the other properties: 
53
54 "
55   doctitle = "Changing the time signature without affecting the beaming"
56 } % begin verbatim
57
58 \relative c'' {
59   \time 3/4
60   a16 a a a a a a a a a a a
61
62   % Change time signature symbol but keep 3/4 beaming
63   % due to unchanged underlying time signature
64   \set Score.timeSignatureFraction = #'(12 . 16)
65   a16 a a a a a a a a a a a
66
67   \time 12/16
68   % Lose 3/4 beaming now \time has been changed
69   a16 a a a a a a a a a a a
70 }