]> git.donarmstrong.com Git - lilypond.git/blob - input/lsr/changing-the-time-signature-without-affecting-the-beaming.ly
Merge branch 'master' of ssh://jneem@git.sv.gnu.org/srv/git/lilypond
[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.11.64"
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   texidoc = "
20 The @code{\\time} command sets the properties
21 @code{timeSignatureFraction}, @code{beatLength}, @code{beatGrouping}
22 and @code{measureLength} in the @code{Timing} context, which is
23 normally aliased to @code{Score}. Changing the value of
24 @code{timeSignatureFraction} causes the new time signature symbol to be
25 printed without changing any of the other properties: 
26
27 "
28   doctitle = "Changing the time signature without affecting the beaming"
29 } % begin verbatim
30
31 \relative c'' {
32   \time 3/4
33   a16 a a a a a a a a a a a
34
35   % Change time signature symbol but keep 3/4 beaming
36   % due to unchanged underlying time signature
37   \set Score.timeSignatureFraction = #'(12 . 16)
38   a16 a a a a a a a a a a a
39
40   \time 12/16
41   % Lose 3/4 beaming now \time has been changed
42   a16 a a a a a a a a a a a
43 }