]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/changing-the-time-signature-without-affecting-the-beaming.ly
Docs: update snippets locally
[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 %% Translation of GIT committish: d96023d8792c8af202c7cb8508010c0d3648899d
23   texidocde = "
24 Der @code{\\time}-Befehl verändert die Eigenschaften
25 @code{timeSignatureFraction}, @code{beatLength}, @code{beatGrouping}
26 und @code{measureLength} im @code{Timing}-Kontext, welcher normalerweise
27 gleichbedeutend mit @code{Score} ist.  Wenn der Wert von
28 @code{timeSignatureFraction} verändert wird, wird die neue
29 Taktart ausgegeben, ohne die anderen Eigenschaften zu beeinflussen:
30
31 "
32   doctitlede = "Die Taktart verändern ohne die Bebalkung zu beeinflussen"
33
34
35 %% Translation of GIT committish: e71f19ad847d3e94ac89750f34de8b6bb28611df
36   texidocfr = "
37 La commande @code{\\time} gère les propriétés
38 @code{timeSignatureFraction}, @code{beatLength}, @code{beatGrouping}
39 et @code{measureLength} dans le contexte @code{Timing}, normallement
40 rattaché à @code{Score}.  Le fait de modifier la valeur de
41 @code{timeSignatureFraction} aura pour effet de changer l'apparence du
42 symbole affiché sans pour autant affecter les autres propriétés de la
43 métrique :
44
45 "
46   doctitlefr = "Changement de métrique sans affecter les règles de ligature"
47
48   texidoc = "
49 The @code{\\time} command sets the properties
50 @code{timeSignatureFraction}, @code{beatLength}, @code{beatGrouping}
51 and @code{measureLength} in the @code{Timing} context, which is
52 normally aliased to @code{Score}. Changing the value of
53 @code{timeSignatureFraction} causes the new time signature symbol to be
54 printed without changing any of the other properties:
55
56 "
57   doctitle = "Changing the time signature without affecting the beaming"
58 } % begin verbatim
59
60 \relative c'' {
61   \time 3/4
62   a16 a a a a a a a a a a a
63
64   % Change time signature symbol but keep 3/4 beaming
65   % due to unchanged underlying time signature
66   \set Score.timeSignatureFraction = #'(12 . 16)
67   a16 a a a a a a a a a a a
68
69   \time 12/16
70   % Lose 3/4 beaming now \time has been changed
71   a16 a a a a a a a a a a a
72 }
73