Jump to content

Measure counter (obsolete in 2.17)

From LilyPond wiki
Revision as of 22:55, 21 November 2025 by Lemzwerg (talk | contribs)

This snippet provides a workaround for emitting measure counters using transparent percent repeats.

\version "2.24"

<<
  \context Voice = "foo" {
    \clef bass
    c4 r g r
    c4 r g r
    c4 r g r
    c4 r g r
  }
  \context Voice = "foo" {
    \set countPercentRepeats = ##t
    \hide PercentRepeat
    \override PercentRepeatCounter.staff-padding = #1
    \repeat percent 4 { s1 }
  }
>>