我正在写一份book
文档,遇到了一个奇怪的现象:每当有一页是空白的(例如因为它代表一章的结尾)时,页码就会放在左上角,而不是通常的底部中央。我的乳胶代码如下:
\documentclass[12pt,twoside,a4paper]{book}
\usepackage[english]{babel}
\usepackage[utf8]{inputenc}
\usepackage{hyperref}
\begin{document}
\chapter*{Introduction}
Hey this is some test text.
\chapter{Another chapter}
With some random text.
\end{document}
我在 Linux 上,通过运行“手动”进行编译pdflatex <filename>.tex
,输出如下。
如您所见,第二个页码的位置错误。有什么办法可以修复它吗?
答案1
页码的显示由\pagestyle{...}
和 决定\thispagestyle{...}
。如果没有另行定义,文档类book
在带有章节标题的页面中使用\thispagestyle{plain}
(作为章节样式定义的一部分),在其他页面(无论是否为空)上使用默认的书页样式(其中页码位于页眉外部)。
因此,解决您的问题的方法是\pagestyle{plain}
添加\begin{document}
:
\documentclass[12pt,twoside,a4paper]{book}
\usepackage[english]{babel}
\usepackage[utf8]{inputenc}
\usepackage{hyperref}
\usepackage{lipsum}
\begin{document}
\pagestyle{plain}% <--- added
\chapter*{Introduction}
\lipsum
\lipsum[1]
Hey this is some test text.
\chapter{Another chapter}
With some random text.
\end{document}