我怎样才能删除两个章节之间的一页空白页。
\documentclass[12pt,titlepage,a4paper]{book}
\input{chapter1}
\newcommand*\NewPage{\clearpage\thispagestyle{empty}\null}
\NewPage
\input{chapter2}
答案1
删除
\newcommand*\NewPage{\clearpage\thispagestyle{empty}\null}
\NewPage
\null
应该有预期的效果(下一页顶部留下的定义似乎在所有情况下都是不正确的,而且在章节标题之前肯定不是所希望的)
答案2
如果您在页面中使用大型表格,则表格开始前很可能会出现空白区域。请使用longtable
而不是tabular
或table
环境。