今天我用它\tableofcontents
发表了一篇内容,但缺少参考。
我的试用
\documentclass{ctexart }
\begin{document }
\addcontentsline{ toc }{ section }{Reference }
\tableofcontents
\end{ document }
幸运的是,引用出现在第一行,而我需要它出现在最后一行。
所以我想知道如何修改。谢谢。
答案1
如果你正在谈论thebibliography
你必须使用
\addcontentsline{toc}{section}{\bibname}
环境内部:
\begin{thebibliography}{99}\addcontentsline{toc}{section}{\bibname}
\bibitem{label} Insert here the reference data.
\end{thebibliography}
答案2
tocbibind
您可以使用自动将参考书目添加到目录的包:
\usepackage[nottoc]{tocbibind}
该选项nottoc
是为了避免将 ToC 本身添加到 ToC。
梅威瑟:
\documentclass{ctexart}
\usepackage[nottoc]{tocbibind}
\begin{document}
\tableofcontents
\newpage
I use the softwares
\begin{thebibliography}{99}
\bibitem{one}
mathematica 8.0
\bibitem{two}
maple8.0
\end{thebibliography}
\end{document}
输出: