[Tex/LaTex] Footnote in caption and in the same page of caption

captionsfootnotes

I'm wondering if there is a way to write a footnote inside a caption and to stick the footnote in the same page of caption.

In my code I'm using footnotemark and footnotetext, but the footnote occurs two pages before the page in which there is the figure with caption.

\documentclass{article}
\usepackage{graphicx}

\begin{document}
    \begin{figure}[h]
    \centering
    \includegraphics[scale=0.3]{fig16}
    \caption[Caption for LOF]{Confronto con altri biosensori elettrochimici\footnotemark .}
    \end{figure}

    \footnotetext{Per [29], [39], [40], [2], [5], [41], [42], [15] si veda\cite{sun2016multi}.}

\end{document}

EDIT: the figure is the following:

enter image description here

Thank you in advance.

Best Answer

To solve the problem it is necessary to put the following code below the text which is in the same page of the figure (in this case below the sencente which finished with the word "luogo"):

\footnotetext{Per [29], [39], [40], [2], [5], [41], [42], [15] si veda\cite{sun2016multi}.}

enter image description here