如何处理排版异常的脚注

如何处理排版异常的脚注

以下 MWE 是我所遇到的较大规模排版问题的模型。

\documentclass{book}
\usepackage{xcolor}

\begin{document}
\Large

\noindent A sentence.\footnote{ordinary numbering} \\
A sentence.\footnote{ordinary numbering} \\
\textbf{\textcolor{red}{A sentence to be strangely footnoted.}}\footnote{\textbf{\textcolor{red}{I want this footnote to be numbered 256}}} \\
A sentence.\footnote{\textbf{\textcolor{red}{I would like to resume the regular footnote numbering here with 3}}} \\
A sentence.\footnote{ordinary numbering} \\
A sentence.\footnote{ordinary numbering} \\
\end{document}

带输出

在此处输入图片描述

在此处输入图片描述

问题:在代码中,我给出了带有标准编号的六个脚注句子。我需要能够修改代码,以便第三个脚注的编号为 256,第四个脚注的编号为 3,第五个脚注的编号为 4,第六个脚注的编号为 5,如果我给出了所有 256 个脚注,则继续使用标准编号直至 255。如何实现这一点?

答案1

由于您使用的是数字,因此您只需使用 即可\footnote[256]{...}强制对脚注进行编号256。数字(作为可选参数传递给\footnote)用于设置脚注计数器。

在此处输入图片描述

相关内容