我正在尝试复制我所上课程的教科书格式。除了章节页码外,所有页码都在页眉中,章节页码在右下角页脚中。我不知道如何仅在章节页上执行此操作。
答案1
我想这就是你所追求的:
\documentclass[12pt]{book}
\usepackage{fancyhdr}
\pagestyle{fancy}
\renewcommand{\headrulewidth}{0pt}
\renewcommand{\footrulewidth}{0pt}
\fancyhf{}
\fancyhead[LE,RO]{\thepage}
\fancypagestyle{plain}{%
\fancyhf{}
\fancyfoot[R]{\thepage}
}
\begin{document}
\chapter{Test}
Something
\newpage
Something else
\newpage
Something else
\end{document}