我明天要交论文,突然发现除了第一页之外,其他章节的页码都找不到。有谁能帮我吗?我担心我没有时间建立一个 mwe,真遗憾。
前导设置:
\documentclass{scrbook}
\usepackage{lipsum}
\begin{document}
\pagestyle{empty}
\begin{center}
\LARGE
My thesis\\
Submitted by Louis Cypher
\end{center}
\newpage
\chapter{Introduction}
\lipsum[1-5]
\end{document}
我的系统是 Debian wheezy 和 TeX Live 2011。
答案1
scrbook
对特殊页面定义不同pagestyle
。例如章节。
\newcommand*{\titlepagestyle}{plain}
\newcommand*{\partpagestyle}{plain}
\newcommand*{\chapterpagestyle}{plain}
\newcommand*{\indexpagestyle}{plain}
如果仅在章节页面上打印页码,我猜您\pagestyle{empty}
的文档中的某处有该命令。
根据这个猜测,您可以用来\pagestyle{headings}
设置文档中“普通”文本页的页眉和页脚。
答案2
答案3
通常更安全的做法是使用页面特定样式,\thispagestyle{x}
使其仅适用于一个页面。对于标题页,我同意 Schweinebacke 的观点。环境titlepage
是首选,其中空白页面样式隐式地限于环境
对于非标题页的一般示例:
\documentclass{scrbook}
\usepackage{lipsum}
\begin{document}
\chapter{Abstract}
\lipsum[1-5]
\clearpage
\thispagestyle{empty}
\begin{center}
\LARGE
My thesis special page
Submitted by Louis Cypher
\end{center}
% Starting a new page with a new chapter
\chapter{Introduction}
\lipsum[1-5]
\end{document}