我有一个文档,其标题几乎为空,其中只包含一些章节。
每个章节都由类似这样的内容组成 - 一个 \chapter 标题和一堆文本:
\chapter{Foo Bar}
A bunch of text - no math formulas, nothing fancy.
当我排版文档时,第一章和后续章节(first' and
第二章)之间会插入一整页空白页,但所有章节的排版都符合我的预期。每章都从新的一页开始,但没有空白页。
即使我重新排列章节,情况似乎也是如此。例如,\include(second) \include(first) \include(third) \include(forth)
在“第二”和“第一”之间插入一张空白页 - 所以我怀疑主文档出了问题。
造成这种情况的一些常见原因有哪些?
\documentclass[12pt]{memoir}
\usepackage{polyglossia}
\setmainfont{EB Garamond}
\setmainlanguage{english}
\setotherlanguage{hebrew}
\newfontfamily{\hebrewfont}[Script=Hebrew]{Hadasim CLM}
\newfontfamily{\hebrewfontsf}[Script=Hebrew]{Miriam CLM}
\newfontfamily{\hebrewfonttt}[Script=Hebrew]{Miriam Mono CLM}
\begin{document}
%\texthebrew{דוגמא לגופני ברירת מחדל}
\include{first}
\include{second}
\include{third}
\include{fourth}
\end{document}