删除 pdf 顶部的灰色水平线

删除 pdf 顶部的灰色水平线

我正在使用给我的一个 .tex 模板。

在最终的 PDF 中,每页顶部都有一条灰色的水平线。我想删除它,但不确定是我文件中的哪一行创建的。

有什么显而易见的事情我可以尝试吗?

谢谢。


更新:

我现在在类文件中查找了包含单词“head”的任何内容。本节包括所有提及的内容:

\setlength{\evensidemargin}{1.96cm}
%\setlength{\oddsidemargin}{-0.54cm}
\setlength{\topmargin}{1mm}
\setlength{\headheight}{1.36cm}
\setlength{\headsep}{1.00cm}
\setlength{\textheight}{20.84cm}
\setlength{\textwidth}{14.5cm}
\setlength{\marginparsep}{1mm}
\setlength{\marginparwidth}{3cm}
\setlength{\footskip}{2.36cm}

\pagestyle{fancy}
\renewcommand{\chaptermark}[1]{\markboth{\MakeUppercase{\thechapter. #1 }}{}}
\renewcommand{\sectionmark}[1]{}
\fancyhf{}
\fancyhead[RO]{\bfseries\rightmark}
\fancyhead[LE]{\bfseries\leftmark}
\fancyfoot[C]{\thepage}
\renewcommand{\headrulewidth}{0.5pt}
\renewcommand{\footrulewidth}{0pt}
\addtolength{\headheight}{0.5pt}
\fancypagestyle{plain}{
\fancyhead{}
\renewcommand{\headrulewidth}{0pt}

这里有什么明显的我可以改变的吗?

谢谢。

答案1

改变

\renewcommand{\headrulewidth}{0.5pt}

\renewcommand{\headrulewidth}{0pt}

所以,你应该

\fancyhf{}
\fancyhead[RO]{\bfseries\rightmark}
\fancyhead[LE]{\bfseries\leftmark}
\fancyfoot[C]{\thepage}
\renewcommand{\headrulewidth}{0pt}
\renewcommand{\footrulewidth}{0pt}
\addtolength{\headheight}{0.5pt}

相关内容