目录无页码

目录无页码

我如何跳过编号直到第 1 章的开始scrbook

我用的是

\begin{document}
\pagestyle{empty}
\pagenumbering{none}
\maketitle
\tableofcontents
\pagestyle{headings}
\pagenumbering{arabic}
\chapter{My first chapter}

在书的开头,但目录仍已编号,因此第 1 章在第 3 页。我怎样才能完全跳过编号直到第 1 章的开始?

答案1

我不知道\pagenumbering{none}。另一方面,\pagenumbering{gobble}和的组合\cleardoublepage\pagenumbering{arabic}可以实现您想要的效果。(请注意\pagenumbering也会将计数器重置page为 1。)

\documentclass{scrbook}

\usepackage[english]{babel}
\usepackage{blindtext}

\begin{document}

\pagestyle{empty}
\pagenumbering{gobble}

\author{Me}
\title{My work}
\maketitle

\tableofcontents

\cleardoublepage
\pagestyle{headings}
\pagenumbering{arabic}

\blinddocument

\blinddocument

\blinddocument

\blinddocument

\blinddocument

\blinddocument

\end{document} 

相关内容