lilypond-user
[Top][All Lists]
Advanced

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

Re: Footnote is not printed


From: Павел
Subject: Re: Footnote is not printed
Date: Sat, 4 Dec 2021 11:16:40 +0300
User-agent: Mozilla/5.0 (X11; Linux x86_64; rv:91.0) Gecko/20100101 Thunderbird/91.3.1

Thank you for your replies, my friends! Now I understand it.

04.12.2021 02:15, Valentin Petzel пишет:
I think it would be better to add a \noPageBreak between the markup and the
score, just in case.

If you do not want loose the automatic formatting of the header you could do
\markup \footnote \null \italic "* By me"
\noPageBreak

Before the score. But thus will give you a little extra spacing (markup-
markup-spacing) before the score.

Cheers,
Valentin

Am Freitag, 3. Dezember 2021, 21:37:11 CET schrieb Jean Abou Samra:
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]