]> git.donarmstrong.com Git - lilypond.git/blob - input/lsr/changing-the-time-signature-without-affecting-the-beaming.ly
Add grammar to Notation Reference
[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   texidoc = "
34 The @code{\\time} command sets the properties
35 @code{timeSignatureFraction}, @code{beatLength}, @code{beatGrouping}
36 and @code{measureLength} in the @code{Timing} context, which is
37 normally aliased to @code{Score}. Changing the value of
38 @code{timeSignatureFraction} causes the new time signature symbol to be
39 printed without changing any of the other properties: 
40
41 "
42   doctitle = "Changing the time signature without affecting the beaming"
43 } % begin verbatim
44
45 \relative c'' {
46   \time 3/4
47   a16 a a a a a a a a a a a
48
49   % Change time signature symbol but keep 3/4 beaming
50   % due to unchanged underlying time signature
51   \set Score.timeSignatureFraction = #'(12 . 16)
52   a16 a a a a a a a a a a a
53
54   \time 12/16
55   % Lose 3/4 beaming now \time has been changed
56   a16 a a a a a a a a a a a
57 }