lilypond-user
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: Faking a time signature


From: Malte Meyn
Subject: Re: Faking a time signature
Date: Fri, 13 Jan 2017 15:08:57 +0100
User-agent: Mozilla/5.0 (X11; Linux x86_64; rv:45.0) Gecko/20100101 Thunderbird/45.5.1


Am 13.01.2017 um 14:29 schrieb Menu Jacques:
> Hello folks,
> 
> In a Canzon by Gabrieli, we have 4/2 time written as slashed C:
> 

\time sets timeSignatureFraction and measureLength. So you can either
use time and set one of these context properties or you set both of them
and don’t need \time:

\version "2.19.53"

{
  \time 4/2
  \set Staff.timeSignatureFraction = 2/2
  b2 b b b
}
% or
{
  \time 2/2
  \set Score.measureLength = #(ly:make-moment 4/2)
  b2 b b b
}
% or
{
  \set Staff.timeSignatureFraction = 2/2
  \set Score.measureLength = #(ly:make-moment 4/2)
  b2 b b b
}



reply via email to

[Prev in Thread] Current Thread [Next in Thread]