LaTeX换页

2018-04-12
#LaTeX

\newpage 和 \clearpage 的区别:

  • \newpage: The \newpage command ends the current page.

  • \clearpage:The \clearpage command ends the current page and causes all figures and tables that have so far appeared in the input to be printed.

通俗点讲就是当你新加的一页内容较多时,两者基本一样,当新加的一页内容较少时,“\newpage”就无法实现你想要的效果,但“\clearpage”可以。