我应该如何删除页眉规则并改为显示页脚规则,页码居中对齐,项目标题左对齐

我应该如何删除页眉规则并改为显示页脚规则,页码居中对齐,项目标题左对齐
\usepackage{fancyhdr}
\setlength{\headheight}{15pt}
\pagestyle{fancy}
\renewcommand{\chaptermark}[1]{\markboth{#1}{}}
\renewcommand{\sectionmark}[1]{\markright{#1}{}}
\fancyhf{}
%\fancyhead[LE,RO]{\thepage}
%\fancyhead[RE]{\textbf{\textit{\nouppercase{\leftmark}}}}
%\fancyhead[LO]{\textbf{\textit{\nouppercase{\rightmark}}}}
\fancypagestyle{plain}{ %
\fancyhf{} % remove everything
\renewcommand{\headrulewidth}{0pt} % remove lines as well
\renewcommand{\footrulewidth}{0.6pt}
\fancyhf{}
\fancyfoot[C]{\thepage}

答案1

这就是你所要求的吗?

\documentclass{article}
\usepackage{fancyhdr}

\begin{document}
\pagestyle{fancy}
\pagenumbering{arabic}
\renewcommand{\headrulewidth}{0pt}   % remove header rule
\renewcommand{\footrulewidth}{0.6pt} % set footer rule
\lfoot{Title goes here}
test
\end{document}

相关内容