我正在写论文,并且正在使用文档类thesis
。我希望页码出现在页面底部并居中。
\documentclass[12pt,a4paper, oneside, bold]{thesis}
\usepackage[left=3cm,right=2cm,top=3cm,bottom=2cm]{geometry}
\begin{document}
My text....
\end{document}
我尝试写类似的东西:
\documentclass[12pt,a4paper, oneside, bold]{thesis}
\usepackage[left=3cm,right=2cm,top=3cm,bottom=2cm]{geometry}
\usepackage{fancyhdr}
\fancyhf{}
\cfoot{\thepage}
\begin{document}
My text
\end{document}
但什么都没起作用。请提出任何建议。
答案1
该包fancyhdr
允许您修改标题。但是,该包fancyhdr
不会覆盖默认样式,而是定义一个名为的新样式fancy
。因此您必须使用\pagestyle{fancy}
:
\documentclass[12pt,a4paper, oneside, bold]{thesis}
\usepackage[left=3cm,right=2cm,top=3cm,bottom=2cm]{geometry}
\usepackage{fancyhdr}
\fancyhf{}
\cfoot{\thepage}
\pagestyle{fancy}
\begin{document}
My text
\end{document}