创建编号脚注,但文档中无引用

创建编号脚注,但文档中无引用

我想创建一个带有具体编号的脚注,但在文中没有引用。

原因是因为我附加了一张已放脚注引用的图像,但我现在不知道如何添加脚注...如果我使用类似的内容\footnote[5]{footnote here},则会显示数字 5...我该如何隐藏它,或者添加一个没有参考资料的带有特定编号的脚注?

tl;dr- 我有一张带有一些文字的图片,并且文本上有脚注引用。我需要添加一个脚注,但不要将参考编号放在任何地方

答案1

您可以使用\refstepcounter{footnote}\footnotetext{bla bla} 或仅使用 来执行此操作\footnotetext[3]{bla bla}。这是 MWE。

\documentclass{article}

\begin{document}
foo\refstepcounter{footnote}\footnotetext{bla bla} bar baz

foo\footnotetext[5]{bla bla} bar baz
\end{document} 

答案2

我不知道这是否能让你满意。我还是新手,但我用这个代码做到了这一点。

\makeatletter
\def\nonumfootnote{\xdef\@thefnmark{}\@footnotetext}
\makeatother

\begin{document}
your text\nonumfootnote{this footnote has no number}
\end{document}

相关内容