Fancyhdr 标题位于正文上方

Fancyhdr 标题位于正文上方

我对页眉和页脚有问题。当我制作页眉时,它会出现在文本的顶部。也许有人可以帮忙修复它。

\documentclass[11pt,a4paper,oneside]{article}
\usepackage{fancyhdr}
\titleformat{\section}[block]{\Large\bfseries\filcenter}{\thesection}{1em}{}
\titleformat{\subsection}[hang]{\bfseries\filcenter}{\thesubsection}{1em}{}
\titleformat{\subsubsection}[hang]{\bfseries\filcenter}{\thesubsubsection}{1em}{}
\renewcommand{\thesection}{\arabic{section}}\pagestyle{fancy} 
\fancyfoot{}
\fancyfoot[LE,LO]{MY TEXT}
\renewcommand{\footrulewidth}{0.4pt}
\begin{document}

这就是我得到的结果:在此处输入图片描述

我希望这些信息足以修复它。谢谢!

答案1

您应该将页面样式设置为花式,并使用以下命令清除花式标题:

\usepackage{fancyhdr}
\setlength{\headheight}{15.2pt}
\pagestyle{fancy}
\renewcommand{\headrulewidth}{0pt} % no line in header area
\fancyhead{}
\chead{your header in center} %\lhead and \rhead also available

相关内容