lilypond-user
[Top][All Lists]
Advanced

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

Re: Polymetric music and page breaks


From: Neil Puttock
Subject: Re: Polymetric music and page breaks
Date: Thu, 7 Jul 2011 17:06:09 +0100

On 5 July 2011 23:34, Andrea La Rose <address@hidden> wrote:
>
> This snippet seems to do the trick:
>
> global = { \repeat unfold 3 { \time 4/4 \once \override Staff.TimeSignature
> #'stencil = ##f { s1*4 } \bar "" \break { s1*4 }
>
> The override of the stencil removes the extra time signatures; the once
> command ensures that not all of the time signatures throughout the piece are
> removed.

You don't need to put the time signature inside the \repeat unfold block:

\global = {
  \time 4/4
  \repeat unfold 6 {
    s1*4 \bar "" \break
  }
}

Cheers,
Neil



reply via email to

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