如何制作编号页

如何制作编号页

以下是我的 MWE。

但是当我在 Overleaf 上使用它时,除了页码问题,其他一切都很好。除了第一页之外,其他页面都没有页码。我怎样才能让所有页面都在每页的底部中心进行页码?

\documentclass{article}
\usepackage{fancyhdr}
\usepackage{lipsum}% just to generate text for the example
\usepackage[utf8]{inputenc}
\usepackage{amssymb,amsmath,amsthm}
\usepackage[runin]{abstract}
\usepackage{titlesec}
\usepackage{titlecaps}

\renewcommand{\abstractname}{\normalfont\scshape{Abstract}.}

\newtheorem{theorem}{Theorem}
\newtheorem{lemma}{Lemma}

\newcommand\shorttitle{The Short Title}
\newcommand\authors{Author A, Author B and AuthorC}

\fancyhf{}
\renewcommand\headrulewidth{0pt}
\fancyhead[C]{%
\ifodd\value{page}
  \small\scshape\authors
\else
  \small\scshape\shorttitle
\fi
}
\pagestyle{fancy}

\begin{document}
\title{My Paper}
\author{The Author}
\maketitle
\titleformat{\section}[block]{\filcenter\scshape}{\thesection.}{0.5em}{\titlecap}

\section{Introduction}
\lipsum[1-20]

\end{document}

相关内容