标题中的脚注和标题的同一页中

标题中的脚注和标题的同一页中

我想知道是否有办法在标题内写脚注并将脚注粘贴在同一页标题中。

在我的代码中,我使用了脚注标记和脚注文本,但脚注出现在带有标题的图表的页面之前两页。

\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}

编辑:图如下:

在此处输入图片描述

先感谢您。

答案1

为了解决这个问题,需要将以下代码放在图的同一页中的文本下方(在本例中,位于以单词“luogo”结尾的句子下方):

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

在此处输入图片描述

相关内容