将数字放在 \pagestyle{header} 的页脚中

将数字放在 \pagestyle{header} 的页脚中

我喜欢 \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}

相关内容