是否可以配置 koma-script 的 scrreprt,使其不会在新章节开始时仅为章节信息创建页面?我知道 scrartcl 不会对部分执行此操作,但我想使用 scrreprt。
更新:原来我搞错了
\include{}
和
\input{}
包含为每个包含的文件开始一个新页面....
答案1
对我来说很好。章节无需额外页面:
\documentclass{scrreprt}
\begin{document}
\chapter{A}
\section{B}
some text
\end{document}
答案2
(抱歉,目前无法添加评论,声誉较低。)
也许我没有明白要点,但在这个例子中,我的 D 章从新的一页开始:
\documentclass{scrreprt}
\begin{document}
\chapter{A}
\section{B}
some text
\section{C}
some text
\chapter{D}
\section{E}
some text
\section{F}
some text
\end{document}