标题说明了一切。一位朋友正在撰写她的论文,我们不知道该如何确保所有显示页码的页面上的页码格式相同。
默认定位是页码在偶数页和奇数页上左右变换,以及在每章第一页的底部变换。
理想情况下,她希望将每页的页码打印在书的右上角,并且不为章节的第一页添加特殊格式。
有这种定制的经验吗?
编辑:
已请求 MWE,因此已提供。
\documentclass{book}
\begin{document}
\chapter{foo}
Special chapter title page. Page number positioned at bottom of page
\pagebreak
Normal body text. Page number positioned at top left corner of page.
\end{document}
答案1
要将所有页面格式化并在页脚中心显示页码,非常简单,fancyhdr
。
微波能量吸收 1
\documentclass{book}
\usepackage{fancyhdr}
\pagestyle{fancy}
\fancyhead[LE]{}
\fancyhead[RO]{}
\fancyhead[RE]{}
\fancyhead[LO]{}
\cfoot{\thepage}
\begin{document}
\chapter{foo}
Special chapter title page. Page number positioned at bottom of page.
\pagebreak
Normal body text. Page number positioned at bottom of page again.
\end{document}
如果你想让所有页面的右上角都有数字,那就稍微复杂一点,但还是可以做到的,请参见fancyhdr 手册。
微波辐射计 2
\documentclass{book}
\usepackage{fancyhdr}
\pagestyle{fancy}
\fancyhead[LE]{}
\fancyhead[RO]{}
\fancyhead[RE]{}
\fancyhead[LO]{}
\fancyfoot[C]{}
\rhead{\thepage}
\fancypagestyle{plain}{%
\fancyhf{}
\rhead{\thepage}
}
\begin{document}
\chapter{foo}
Special chapter title page. Page number positioned at top right.
\pagebreak
Normal body text. Page number positioned at top right again.
\end{document}