据我了解,页码是自动的,但我没有得到页码。我的文档的开头如下:
\documentclass[12pt]{book}
\title{Something}
\usepackage{fancyhdr}
\usepackage{url}
\fancyhf{}
\renewcommand\headrulewidth{0pt}
\setlength{\headheight}{15pt}
\pagestyle{fancy}
\makeatletter
\let\ps@plain\ps@fancy
\makeatother
\begin{document}
\maketitle
\chapter{Introduction}
如何从 \chapter 的第一页开始编排页码?
答案1
虽然没有实际意义,但有可能:
\documentclass[12pt]{book}
\title{Something}
\usepackage{fancyhdr}
\fancyhf{}
\cfoot{\thepage}
\renewcommand\headrulewidth{0pt}
\setlength{\headheight}{15pt}
\pagestyle{fancy}
\makeatletter
\let\ps@plain\ps@fancy
\makeatother
\begin{document}
\begingroup
\makeatletter
\let\ps@empty\ps@plain
\maketitle
\endgroup
\chapter{Introduction}
\end{document}