正文和尾文中的数字不一致

正文和尾文中的数字不一致

我使用\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}

在此处输入图片描述

相关内容