我正在使用 documentclass scrbook 撰写论文。我认为该类意味着每个新章节都从奇数页开始,这通常是一个好主意。但是,我的论文序言中有一些简短的未编号章节(例如摘要、致谢、出版物),我想避免那里出现大量空白。
是否可以让单个章节直接从下一页开始,而不管下一页是奇数还是偶数?
我真的希望这个问题可以在没有 MWE 的情况下得到回答:)
好的,它来了:
\documentclass[numbers=noenddot,headinclude=true,footinclude=true,cleardoublepage=empty,BCOR=5mm,bibliography=totoc,listof=totoc,a4paper,fontsize=12pt,english]{scrbook}
\begin{document}
\chapter*{Abstract}
Abstract.
\chapter*{Acknowledgements}
I would like to thank my supervisors.
\chapter*{Papers}
The thesis is based on the following papers.
% Here will the thesis start:
\chapter{Introduction}
Introduction.
\chapter{Chapter 2}
Chapter two.
\end{document}
目标是让编号的章节仅从奇数页开始,但对于非编号的章节取消此限制。
提前谢谢了!
答案1
使用 KOMA-Script 类,scrbook
您可以使用\KOMAoptions{open=any}
并\KOMAoptions{open=right}
在这两种模式之间切换。
\documentclass[
numbers=noenddot,
headinclude=true,footinclude=true,
cleardoublepage=empty,% default
BCOR=5mm,
bibliography=totoc,listof=totoc,
a4paper,% default
fontsize=12pt,
english,
open=any% <- added
]{scrbook}
\begin{document}
\addchap*{Abstract}
Abstract.
\addchap*{Acknowledgements}
I would like to thank my supervisors.
\addchap*{Papers}
The thesis is based on the following papers.
%
% Here will the thesis start:
\KOMAoptions{open=right}% <- added
\chapter{Introduction}
Introduction.
\chapter{Chapter 2}
Chapter two.
\end{document}