lilypond-user
[Top][All Lists]
Advanced

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

Re: Footnote is not printed


From: Jean Abou Samra
Subject: Re: Footnote is not printed
Date: Fri, 3 Dec 2021 21:37:11 +0100
User-agent: Mozilla/5.0 (X11; Linux x86_64; rv:91.0) Gecko/20100101 Thunderbird/91.3.1

Le 03/12/2021 à 14:27, Павел a écrit :
Hello, I have problem with a footnote: it is not printer in the bottom of page.

\version "2.22.1"
\score {
    \header {
        piece = "My piece"
        opus = \markup\concat { "My opus" \footnote "*" \italic "* By me" }
    }
    { c' d' e' f' }
}


It's a known issue. Footnotes are only supported in
music and standalone markup, not in headers. Try
this instead:

\version "2.22.1"

\markup \fill-line {
  "My piece"
  \concat { "My opus" \footnote "*" \italic "* By me" }
}

\score {
  { c' d' e' f' }
}


Best,
Jean




reply via email to

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