假设fancyhdr
您的文档中有多种页面样式(使用包),其中一些样式根本没有页脚。当有多种页面样式时,如果页面样式没有页脚,如何使用页脚跳过空间?
梅威瑟:
\documentclass{report}
\usepackage{fancyhdr}
\usepackage{lipsum} % just for the example
\usepackage[paperwidth=200mm, paperheight=260mm, top=20mm, left=35mm, bottom=20mm, includeheadfoot, showframe]{geometry}
\pagestyle{fancy}
\fancypagestyle{plain}{
\fancyhf{}
}
\begin{document}
\chapter{De Finibus Bonorum et Malorum}
\lipsum[1-30]
\end{document}
穷人的早期回答(如果允许的话):
我确实尝试过footskip=0pt
在不带页脚的页面样式中使用,并且它“有效”(提出了几个警告fancyhdr
)。例如:
\fancypagestyle{plain}{
\fancyhf{}
\footskip=0pt
}
但我不确定这是否是想要的方法。