文档末尾的页面摘要

文档末尾的页面摘要
\begin{document}
\include{Introduction}
\include{Chapter1}
\include{Chapter2}
\bibliographystyle{plain}
\bibliography{biblio}
\include{Abstract}
\end{document}

我有一个问题:我按照前面所示在文档中添加了摘要,但我希望摘要页面没有页码;然而,此页面上出现了“参考书目”标题。我该如何删除它?

答案1

使用\cleardoublepage \pagestyle{empty}方式

\begin{document}
\include{Introduction}
\include{Chapter1}
\include{Chapter2}
\bibliographystyle{plain}
\bibliography{biblio}
\cleardoublepage 
\pagestyle{empty}
\include{Abstract}
\end{document}

删除摘要中的标题。

相关内容