标题说明了一切,我找到了将单侧改为双侧的答案,但反过来却行不通。那么这可能吗?如果可以,怎么做?
答案1
有可能,但使用两个不同的文档并使用包pdfpages
合并它们可能会更干净。只需查看包生成的警告即可typearea
;-)
\documentclass[twoside]{scrartcl}
\usepackage{showframe}
\usepackage{blindtext}
\begin{document}
\blinddocument
\cleardoublepage
\KOMAoption{twoside}{false}
%\recalctypearea% <- the recalculation is done by default
\blinddocument
\end{document}
答案2
这是一个解决方案
\documentclass{book}
\usepackage{lipsum}
\begin{document}
\chapter{title}
\lipsum
\chapter{title}
\lipsum
\makeatletter\@twosidefalse\@mparswitchfalse\makeatother
\lipsum
\chapter{title}
\lipsum
\chapter{title}
\lipsum
\end{document}