g**k 发帖数: 236 | 1 我想把文献加到contents里面,所以加了
\addcontentsline(toc){section}{Bibliography}
\include{Bibliography}
Bibliography文件里是开头是这样写的,
\section*{Bibliography}
\begin{thebibliography}{1}
...
结果就是虽然contents里面列出了我想要的,但是文献那页标题出现了Bibliography和
References两个字样。
请问什么样的命令可以消除其中一个而又保持contents里面包含页面说明?
谢谢! |
T*******n 发帖数: 493 | 2 Try in main file:
\documentclass{article}
\renewcommand{\refname}{Bibliography}
\begin{document}
...
\include{Bibliography}
...
\end{document}
and in Bibliography.tex (included file):
\addcontentsline{toc}{section}{\refname}
\begin{thebibliography}{1}
...
\end{thebibliography}
\endinput
【在 g**k 的大作中提到】 : 我想把文献加到contents里面,所以加了 : \addcontentsline(toc){section}{Bibliography} : \include{Bibliography} : Bibliography文件里是开头是这样写的, : \section*{Bibliography} : \begin{thebibliography}{1} : ... : 结果就是虽然contents里面列出了我想要的,但是文献那页标题出现了Bibliography和 : References两个字样。 : 请问什么样的命令可以消除其中一个而又保持contents里面包含页面说明?
|
g**k 发帖数: 236 | 3 Thanks!
It works now!
【在 T*******n 的大作中提到】 : Try in main file: : \documentclass{article} : \renewcommand{\refname}{Bibliography} : \begin{document} : ... : \include{Bibliography} : ... : \end{document} : and in Bibliography.tex (included file): : \addcontentsline{toc}{section}{\refname}
|