如何设置脚注空间的大小?
我试图让正文在视觉上保持一致,即正文应该始终看起来是同一个块。为了做到这一点,我在正文下方留出了大量空间(信纸上为 60 毫米)来制作脚注,主要是参考书目和简短评论。有什么方法可以指定它吗?
答案1
或多或少类似于此,基本上告诉 latex 留出一个大空间(这里是 4 厘米),但然后告诉它脚注不占用任何空间,因此当有脚注时,tex 不会使页面变短。
\documentclass{article}
\def\a{One two three four five six seven eight. }
\def\b{Red blue yellow green black white}
\def\c{\a\a\b\b\a\a\a\a}
\def\d{\c\c\c\a\b\c\c\c}
\addtolength{\footskip}{4cm}
%\addtolength{\textheight}{-4cm}
\skip\footins0pt
\count\footins0
\dimen\footins4cm
\let\oldfootnoterule\footnoterule
\def\footnoterule{\smallskip\oldfootnoterule}
\begin{document}
\b\a\d\d
!!!\footnote{something blah}
\b
!!!\footnote{another one}%
\footnote{a long one: \b}
\d\d\b
!!!!!!\footnote{\itshape\d}
\b\b\d\a\b\d\d\d
\end{document}