我如何指定参考书目的放置位置?
我需要将它放在附录之前并出现在目录中。
如果相关的话,我会使用 TeXnicCenter 和 MiKTeX 和 BibTeX。文档类是report
。
答案1
答案2
标准方法是这样的,针对report
班级;针对你的班级进行调整。
\documentclass{report}
< other packages >
\usepackage[nottoc]{tocbibind} % <-- this will make the bib appear in the TOC
<customization part>
\begin{document}
\tableofcontents
<material>
\bibliographystyle{whatever}
\bibliography{yourbibfile}
\appendix
<appendix material>
\end{document}
当然这只是一个方案。