lilypond-user
[Top][All Lists]
Advanced

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

Re: repeat percent footnote


From: Gianmaria Lari
Subject: Re: repeat percent footnote
Date: Sun, 21 May 2017 22:48:03 +0200

Thank you Thomas (and Simon!), it works great.

Best regards, g.


On 21 May 2017 at 22:38, Thomas Morley <address@hidden> wrote:


2017-05-18 12:34 GMT+02:00 Simon Albrecht <address@hidden>:
Am 18.05.2017 um 09:58 schrieb Gianmaria Lari:
Is there any way to put a footnote on a repeat percent-like symbols?

Well, there should be. After all, the documentation for \footnote speaks also of indirectly created grobs. However, I can’t say why

\version "2.19.58"
{
  \context Bottom <<
    \repeat percent 2 { c16 d e f }
    { s4 \single\footnote #'(1 . 5) "test" PercentRepeat s }
  >>
}

doesn’t work…

Best, Simon

The grob is not PercentRepeat but RepeatSlash, so below works.

\repeat percent 2 { c16 d e f \footnote #'(1 . 5) "test" RepeatSlash }

It's not always obvious which grob is created by \repeat percent ...
RepeatSlash
DoubleRepeatSlash
PercentRepeat
DoublePercentRepeat
are all possible, iirc.

So I usually check with
\override grob-name-to-test . color = #red
before.

Cheers,
  Harm



reply via email to

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