On 5 July 2011 23:34, Andrea La Rose <[email protected]> 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

_______________________________________________
lilypond-user mailing list
[email protected]
https://lists.gnu.org/mailman/listinfo/lilypond-user

Reply via email to