我使用\footnote
或\footnotemark
取决于引用位置的方便程度。出于某种原因,我在正文中正确地得到了数字 1 和 2,但在脚注中我有两个脚注带有数字 2。我的编辑/编译器是 Kile。
我看不出哪里出了问题。有什么想法吗?
\documentclass[a4paper,10pt]{book}
\usepackage[utf8]{inputenc}
\begin{document}
This footnote\footnotemark is in the middle of a sentence. However, this one
is at the end of it.\footnote{Text of the second footnote}
\footnotetext{Text of the first footnote}
\end{document}
答案1
您可以\footnotetext
通过以下方式强制使用值 1
\footnotetext[1]{....]
但是在您使用它的位置,它仍然会位于第二个脚注之后,因此它们会与正确的编号相关联,但顺序错误。
\footnote
如果在段落末尾使用第二个脚注是“安全的” ,则可以将其放在\footnotetext
相同的位置。
\documentclass[a4paper,10pt]{book}
\usepackage[utf8]{inputenc}
\begin{document}
This footnote\footnotemark is in the middle of a sentence. However, this one
is at the end of it.\footnotetext{Text of the first footnote}\footnote{Text of the second footnote}
\end{document}