scrbook 页码仅出现在章节的第一页

scrbook 页码仅出现在章节的第一页

我明天要交论文,突然发现除了第一页之外,其他章节的页码都找不到。有谁能帮我吗?我担心我没有时间建立一个 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

我建议使用titlepage标题页的环境。这也会在本地使用empty标题页和标题页背面的页面样式:

\documentclass{scrbook}
\usepackage{lipsum}    

\begin{document}
\begin{titlepage}
  \centering
  \LARGE
  My thesis\\
  Submitted by Louis Cypher
\end{titlepage}

\chapter{Introduction}
\lipsum[1-5]
\end{document}

在此处输入图片描述

答案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}

相关内容