我必须在表格和图形的标题中添加脚注。由于使用 \footnote 只会显示数字,而不会在脚注部分显示文本,因此我使用了:
\begin{figure}[h]
\includegraphics[width=1.0\textwidth]{Figures/2.PNG}
\setcounter{figure}{1}
\caption[]{exapmple caption\footnotemark }
\end{figure}
\footnotetext{example text I want in the footnote}.}
问题在于,这样我从 \footnotetext 获得的脚注与使用 \footnote 获得的正常脚注不同。
如您所见,脚注 72、73、74 来自 \footnote{},而脚注 74 是 \footnotetext 的脚注。
在代码中, \footnote 是
\renewcommand{\footnote}[1]{%
\oldfootnote{%
\vspace{-\baselineskip}
\begin{adjustwidth}{5,5pt}{0pt}{#1}\end{adjustwidth}
\vspace{-\baselineskip}
}%
}%
\makeatother
我希望 \footnotetext 不会与其他 \footnote 区分开来,并且我将非常感激您在缩进它或找到将 \footnote 放在 \caption 中的方法方面的帮助。