这问题指出,在书籍类中,一旦\backmatter
出现该命令,章节编号就会停止正常工作。因此,人们基本上被迫将参考书目放在附录之后。原则上,我同意这种顺序。但是,我所在大学的管理部门要求我的论文内容按以下顺序出现:
- 简介等等
- 身体
- 参考书目
- 附录
让附录章节的编号显示出来让我很头疼。有什么解决方法吗?
答案1
最简单的方法是使用类似
{ %%<--- start the group
\backmatter
\bibliographystyle{unsrt}
\bibliography{xampl}
} %%<--- end the group
\appendix
代码:
\documentclass{book}
%\usepackage{appendix}
\begin{document}
\frontmatter
\chapter{Some front matter}
\mainmatter
\chapter{some main matter}
\nocite{*}
{ %%<--- start the group
\backmatter
\bibliographystyle{unsrt}
\bibliography{xampl}
} %%<--- end the group
\appendix
\chapter{appendix}
\section{some section in appendix}
\end{document}