为什么更改页脚内容会在页面顶部画一条线

为什么更改页脚内容会在页面顶部画一条线

我想更改页脚内容,使其变成我选择的文本而不是页码。但进行此更改会在页面顶部画一条线。如何去掉它?

以下是代码:

\documentclass{article}  % The style class
\usepackage{fancyhdr}    % headers and footers

\pagestyle{fancy}        % set the pagestyle to fancy to include headers and footers
\fancyhf{}               % clear the header and footer
\fancyfoot[C]{This document is written in \LaTeX. $\odot$ Last update \today}

\begin{document}
bla
\end{document}

以下是输出的屏幕截图:

pdf 图像

答案1

添加

\renewcommand{\headrulewidth}{0pt}

到你的文档的序言中。

相关内容