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