KOMA-Script 文档类提供了titlepage
选项,当设置为时,true
标题将排版到其自己的页面上,否则允许内容在同一页面上紧跟标题。对于该类,scrreprt
默认值为titlepage=true
,我想将其设置为,但如果紧跟在后面false
,我会得到意想不到的结果,即在目录之前有一个分页符。(如果后面跟着一个部分,则没有分页符。)\maketitle
\tableofcontents
\maketitle
另一方面,的默认值scrartcl
是titlepage=false
,在这种情况下,目录紧跟在标题之后,所以我很确定也有一种简单的方法可以实现这一点srcreprt
,但我找不到它。
这是一个小的代码示例。
\documentclass[titlepage=false]{scrreprt}
\title{Title}
\begin{document}
\maketitle
\tableofcontents
\section*{intro}
\chapter{A}
\section{a}
\section{b}
\section{c}
\end{document}
答案1
用这个:
\documentclass[titlepage=false]{scrreprt}
\setuptoc{toc}{leveldown}
\title{Title}
\begin{document}
\maketitle
\tableofcontents
\section*{intro}
\chapter{A}
\section{a}
\section{b}
\section{c}
\end{document}