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