如何应用 \newpage 命令后使页码显示在每页的底部

如何应用 \newpage 命令后使页码显示在每页的底部

我想看看如何申请\fancyhdr让页码出现在底部。我在 TEX 论坛中找到的方法似乎不起作用,因为我\newpage在开始新章节时使用命令创建新页面。我是 TEX 新手,不知道如何创建解决方法。我如何调整下面写的内容,以便页码出现在每页的底部?在目录中也是如此。

\documentclass[12pt,a4paper]{report}
\usepackage[a4paper,margin=6mm]{geometry}
\usepackage{amsmath}
\usepackage{lipsum}
\usepackage{fancyhdr}


    \fancypagestyle{axionstyle}{%
  \fancyhf{}
  \renewcommand{\headrulewidth}{5pt}
  \cfoot{\huge \textbf{\thepage}} % for example
}
\title{COMPUTATIONAL METHODS FOR THE RIEMANN ZETA FUNCTION}
\author{Axion004}


\begin{document}
\maketitle
\tableofcontents
\clearpage
\section*{Summary}
\addcontentsline{toc}{section}{Summary}
\pagenumbering{gobble}
\setcounter{page}{1}
.
.
.
\newpage
\section*{Introduction}
\addcontentsline{toc}{section}{Introduction}
.
.
.
\newpage
\section*{The Cauchy-Schlomilch transformation and Zeta(s)}
\addcontentsline{toc}{section}{The Cauchy-Schlomilch transformation and Zeta(s)}
.
.
.
\end{document}

以下是目录的示例

在此处输入图片描述

有些页面没有页码

在此处输入图片描述

答案1

\pagenumbering{gobble}删除页面上的所有页码。最好使用\pagestyle{empty}或(由于(大多数情况下为纯文本)\thispagestyle{empty}中的特殊设置,因此并不总是有效)。\tableofcontents

对于特殊的页面样式请使用\fancypagestyle{yourname}{...}适当的设置。

\documentclass[12pt,a4paper]{report}
\usepackage[a4paper,left=1.5cm,right=1.5cm,headheight=10mm,bottom=25mm]{geometry}
\usepackage{amsmath}
\usepackage{amsfonts}
\usepackage{fancyhdr}
\usepackage{hyperref}



\usepackage{blindtext}

\fancypagestyle{axionstyle}{%
  \fancyhf{}
  \renewcommand{\headrulewidth}{0pt}
  \cfoot{\huge \textbf{\thepage}} % for example
}


\title{COMPUTATIONAL METHODS FOR THE RIEMANN ZETA FUNCTION}
\author{Axion004}



\begin{document}
\maketitle
\pagestyle{empty}
\pagenumbering{gobble} %????
\tableofcontents
\clearpage
\pagestyle{axionstyle}
\pagenumbering{arabic}%
\section*{Summary}
\addcontentsline{toc}{section}{Summary}
\clearpage
\blindtext[20]
\end{document}

相关内容