%% Generated by lilypond-book.py %% Options: [indent=0\mm,verbatim,lilyquote,doctitle,ragged-right,alt=[image of music],texidoc] \include "lilypond-book-preamble.ly" % **************************************************************** % Start cut-&-pastable-section % **************************************************************** \paper { #(define dump-extents #t) indent = 0\mm line-width = 160\mm - 2.0 * 0.4\in ragged-right = ##t force-assignment = #"" line-width = #(- line-width (* mm 3.000000)) } \layout { } % **************************************************************** % ly snippet: % **************************************************************** \sourcefilename "changing-the-time-signature-without-affecting-the-beaming.ly" \sourcefileline 0 %% Do not edit this file; it is auto-generated from LSR http://lsr.dsi.unimi.it %% This file is in the public domain. \version "2.12.3" \header { lsrtags = "rhythms" texidoces = " La instrucción @code{\time} establece las propiedades @code{timeSignatureFraction}, @code{beatLength}, @code{beatGrouping} y @code{measureLength} en el contexto @code{Timing}, que normalmente tiene el alias @code{Score}. La modificación del valor de @code{timeSignatureFraction} hace que se imprima la nueva indicación de compás sin que cambie ninguna de las demás propiedades: " doctitlees = "Cambio de compás sin afectar al barrado" texidoc = " The @code{\\time} command sets the properties @code{timeSignatureFraction}, @code{beatLength}, @code{beatGrouping} and @code{measureLength} in the @code{Timing} context, which is normally aliased to @code{Score}. Changing the value of @code{timeSignatureFraction} causes the new time signature symbol to be printed without changing any of the other properties: " doctitle = "Changing the time signature without affecting the beaming" } % begin verbatim \relative c'' { \time 3/4 a16 a a a a a a a a a a a % Change time signature symbol but keep 3/4 beaming % due to unchanged underlying time signature \set Score.timeSignatureFraction = #'(12 . 16) a16 a a a a a a a a a a a \time 12/16 % Lose 3/4 beaming now \time has been changed a16 a a a a a a a a a a a } % **************************************************************** % end ly snippet % ****************************************************************