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