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
}

_______________________________________________
lilypond-user mailing list
lilypond-user@gnu.org
https://lists.gnu.org/mailman/listinfo/lilypond-user

Reply via email to