我喜欢 \pagestyle{header} 的格式,但是我想让页码保留在页脚中。有什么简单的方法可以实现吗?
这是我的 MWE
\documentclass[12pt, a4paper,twoside]{article}
\begin{document}
\pagestyle{headings}
\section{Introduction}
Hello
\end{document}
结果如下:
我希望数字保留在页脚中。有什么解决方案吗?
答案1
用fancyhdr
这个很容易。我把页码放在了这里居中的页脚中。如果它应该出现在左边或右边,请使用\lfoot
或\rfoot
。
\documentclass[12pt, a4paper,twoside]{article}
\usepackage{fancyhdr}
\fancypagestyle{headings}{%
\cfoot{\thepage}
}
\pagestyle{headings}
\begin{document}
\section{Introduction}
Hello
\end{document}