以下 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。如何实现这一点?