How to get a footnote into a caption of a figure? I have look at examples on the forum and I tried two:
\begin{figure}
\centering
\label{position}
\includegraphics[width=\textwidth]{../img/f.png}
\caption[Caption for LOF]{Real caption\footnotemark{45454}}
\footnotetext{ffff}
\end{figure}
Here I do not know where to write a text of the caption, and it is not printed at the bottom of the page.
\begin{figure}
\begin{minipage}{\textwidth}
\includegraphics[width=\textwidth]{../img/fig.png}
\caption[Caption for LOF]%
{Real caption\footnote{blah}}
\end{minipage}
\end{figure}
Here, there is a footnote at the bottom of the page but with a footmark a instead of number. I tried to set it by
\renewcommand*{\thefootnote}{\arabic{footnote}}
but it does not help.
\footnotemarkinsidecaptionand\footnotetextin text... refer https://tex.stackexchange.com/questions/141600/using-footnotemark-footnotetext-trick-for-footnote-in-caption-removes-foot – MadyYuvi Oct 09 '20 at 07:13\footnotetextshould be placed outside of thefigureenvironment, on the same page as the figure and before the next\footnote. See also: Using \footnote in a figure's \caption Apart from that, please make sure the\labelcommand is placed after the\caption, otherwise cross references don't return th eexpected numbers. – leandriis Oct 09 '20 at 07:14\begin{figure}
– leandriis Oct 09 '20 at 07:15\centering \includegraphics[width=\textwidth]{example-image} \caption[Caption for LOF]{Real caption\footnotemark{}} \label{position} \end{figure} \footnotetext{ffff} \end{document}` should result in the expected output.