Am 20.11.19 um 15:22 schrieb Sandro Santilli:
I'd like to use percent signs for chord repeats but
in a \chordmode block the repeats seem to end up being
just not rendered (nothing printed for the repetition
measures).

Is there a way to get those percent signs ?

Yes, you’ll need to include the Percent_repeat_engraver into the ChorNames context, f.e.:

\version "2.19.83"

<<
  \chords \with {
    \consists Percent_repeat_engraver
    \override PercentRepeat.Y-offset = 1
  } {
    \repeat percent 4 f1
    \repeat unfold 4 f1
  }
  \new Staff { R1*8 }
>>

Reply via email to