我对 KOMA 脚本配置有一些疑问,如果你们能帮助我我将非常感激:
- 我怎样才能使所有章节都只出现在偶数页上?
- 我怎样才能使所有部分之间不互相有分页符?
答案1
关于第 1 点:使用类选项open=left
。
\documentclass[open=left]{scrbook}
\begin{document}
\chapter{foo}
Some text.
\chapter{bar}
Some text.
\end{document}
我对 KOMA 脚本配置有一些疑问,如果你们能帮助我我将非常感激:
关于第 1 点:使用类选项open=left
。
\documentclass[open=left]{scrbook}
\begin{document}
\chapter{foo}
Some text.
\chapter{bar}
Some text.
\end{document}