删除“书籍”文档中多余的空白页是否可取?

删除“书籍”文档中多余的空白页是否可取?

文档book类会在标题、目录和每章末尾插入空白页,可能用于双面页面。但是,我不使用双页视图,也不打算打印或以其他方式发布此文档,因此删除这些页面是否是个好主意?如果是,我该怎么做?

\documentclass{book}
\usepackage[utf8]{inputenc}
\title{The Two Trees}
\author{Rahul Choubey}
\date{August 18, 2020}
\newcommand{\preface}{\chapter*{Preface}\addcontentsline{toc}{chapter}{\protect\numberline{}Preface}}
\begin{document}
    \maketitle
    \tableofcontents
    \preface
    \chapter{*insert name here*}
\end{document}

相关内容