如何删除 fancyhdr 中的顶部水平条?

如何删除 fancyhdr 中的顶部水平条?

使用时fancyhdr,如何删除顶部水平线?我根本不想要页眉,只想要页脚。

这就是我现在做的事情:

\documentclass{article}
\usepackage{fancyhdr}
\pagestyle{fancy}

\lfoot{text}
\cfoot{text 2}
\rfoot{text 3}

\begin{document}
Foo Bar
\end{document}

答案1

文档中有各种fancyhdr重新定义的例子\headrulewidth

\fancyhf{} % sets both header and footer to nothing
\renewcommand{\headrulewidth}{0pt}
% your new footer definitions here

会做你想做的事。

要了解更多信息fancyhdr,您可以查看其文档Wikibook LaTeX 中的相应章节

相关内容