我对 Latex 还很陌生,事实上我只是用它来写一篇写作文章,因为它可以在脚注中做脚注。正文只有一句话,脚注在下面大约有 6 页(使用 bigfoot)。我注意到,在第一页,也就是包含正文的页面上,脚注超出了页面的范围,然后在接下来的 5 页中随机地再次正常开始。
我尝试过 \providecommand{\footfudgefiddle}{100} up {64},但什么都没发生。我在这里看到过类似的问题,但不太明白发生了什么。
任何见解都将不胜感激。谢谢!
梅威瑟:
\documentclass[12pt]{article}
\usepackage[ruled]{bigfoot}
\DeclareNewFootnote{A}
\DeclareNewFootnote{B}[alph]
\MakeSortedPerPage{footnoteB}
\makeatletter
\let\@makefntext@orig\@makefntext
\FootnoteSpecific{B}\def\@makefntext{\@makefntext@orig\tiny}
\makeatother
\begin{document}
\title{Dummy Text}
\date{}
\maketitle
\pagebreak
\centerline{This\footnoteA{This is a\footnoteB{this is a sub-footnote} footnote x1000} } is \footnoteA{This is another footnote x1000} my main text.
\end{document}