减少页脚空间

减少页脚空间

我无法减少页脚空间。我在页脚中出现的页码下方打印了一份内容列表。我该如何解决这个问题?我尝试设置页脚长度,但没有成功。

答案1

设置文本块与脚注的距离的参数以一种特殊的方式调用:\skip\footins(LaTeX 内核不像其他内核那样提供符号名称)。

以下是一个例子:

\documentclass{article}
\usepackage[paperwidth=6cm,paperheight=4cm]{geometry}

%\setlength{\skip\footins}{1cm}

\begin{document}

Some text\footnote{A footnote} to go all the way to the end of this short page and show the
distance from the footnotes. Blah blah blah blah blah blah blah blah blah blah blah blah

\end{document}

带有注释设置的两个页面:

在此处输入图片描述

取消注释设置的两个页面:

在此处输入图片描述

答案2

您应该提供一个最小工作示例

至于问题,\footskip应该是从最后一行文本的底部到脚顶部的距离。

\footheight是脚部盒子的高度,可能对于您想要实现的目标更有用。

另请查看fancyhdr包。即使你决定不使用它,它也会在一开始就很好地解释页面元素。

相关内容