Latex中使用thebibliography环境时去除参考文献标题
使用`thebibliography`环境时,默许会添加一个参考文献标题。如果不想显示标题,可以手动删除还是使用`
enewcommand`命令来覆盖默许设置。以下是两种方法:
1. 手动删除标题:在`thebibliography`环境开始之前添加`section*{参考文献}`来手动添加一个无编号的标题。然后,删除`thebibliography`环境内的`ibliographystyle`和`ibliography`命令,将参考文献以适当的格式直接插入环境中。例如:
```latex
section*{参考文献}
egin{thebibliography}{9}
ibitem{latexcompanion}
Michel Goossens, Frank Mittelbach, and Alexander Samarin.
extit{The LaTeX Companion}.
Addison-Wesley, Reading, Massachusetts, 1993.
ibitem{einstein}
Albert Einstein.
extit{Zur Elektrodynamik bewegter K{"o}rper}. (German)
[ extit{On the electrodynamics of moving bodies}].
Annalen der Physik, 322(10):891–921, 1905.
% 插入其他参考文献...
end{thebibliography}
```
2. 使用`
enewcommand`命令覆盖默许设置:在导言区添加以下代码便可去除参考文献标题。
```latex
enewcommand{
efname}{}
```
然后,在`thebibliography`环境中依照适当的格式插入参考文献。例如:
```latex
egin{thebibliography}{9}
ibitem{latexcompanion}
Michel Goossens, Frank Mittelbach, and Alexander Samarin.
extit{The LaTeX Companion}.
Addison-Wesley, Reading, Massachusetts, 1993.
ibitem{einstein}
Albert Einstein.
extit{Zur Elektrodynamik bewegter K{"o}rper}. (German)
[ extit{On the electrodynamics of moving bodies}].
Annalen der Physik, 322(10):891–921, 1905.
% 插入其他参考文献...
end{thebibliography}
```
这样,在文档中将只显示参考文献条目,而不会显示标题。
TOP