禁用标题页的装订补偿

禁用标题页的装订补偿

\documentclass[BCOR10mm]{scrbook}如何在标题页上禁用 KOMAscript 中的绑定补偿(例如)?我使用了titlepage包和fullsizetitle环境,但这不足以删除绑定补偿。

话虽如此,我意识到即使在标题页上,您仍然希望获得装订补偿。

答案1

在给定点使用\KOMAoptions{BCOR=0mm},然后将其恢复为您想要的任何值\maketitle

请注意,有人typearea会抱怨,称其为“肮脏的黑客”。

\documentclass{scrbook}
\usepackage{mwe}% to create dummy text with \blindtext, \Blinddocumet
\usepackage{showframe}% to print the typearea as a frame
\title{Title}
\author{A.\,Uthor}
\begin{document}
\KOMAoptions{BCOR=0mm}
\maketitle
\KOMAoptions{BCOR=20mm}
\Blinddocument
\end{document}

在此处输入图片描述

也可以看看:

相关内容