我想在下面的例子中减小页脚的尺寸,因为我想摆脱页脚下方的多余空白区域。
\documentclass[a4page]{scrartcl}
\usepackage{scrpage2}
\pagestyle{scrheadings}
\ihead[left head]{left head}
\ohead[2010/11]{2010/11}
\ifoot[\today]{\today}
\cfoot[Authors]{Authors}
\setheadsepline{.4pt}
\setfootsepline{.4pt}
\begin{document}
\section{Section 1}
Text...
\end{document}
这能以某种方式实现吗?
答案1
您可以使用geometry
包裹修改页面布局。例如,根据您的示例,添加
\usepackage[bottom=10em]{geometry}
到 之后\documentclass
,页脚看起来要低得多。您可以调整几何选项(在包加载时或在文档开头通过\geometry{...}
)以满足您的需求。通过手动设置,也可能有其他选项。为了便于解释,请考虑阅读fancyhdr
包裹 文档。