使用thebibliography
環境時,默認會添加一個參考文獻標題。如果不想顯示標題,可以手動刪除或者使用\renewcommand
命令來覆蓋默認設置。以下是兩種方法:
thebibliography
環境開始之前添加\section*{參考文獻}
來手動添加一個無編號的標題。然后,刪除thebibliography
環境內的\bibliographystyle
和\bibliography
命令,將參考文獻以適當的格式直接插入環境中。例如:\section*{參考文獻}
\begin{thebibliography}{9}
\bibitem{latexcompanion}
Michel Goossens, Frank Mittelbach, and Alexander Samarin.
\textit{The \LaTeX\ Companion}.
Addison-Wesley, Reading, Massachusetts, 1993.
\bibitem{einstein}
Albert Einstein.
\textit{Zur Elektrodynamik bewegter K{\"o}rper}. (German)
[\textit{On the electrodynamics of moving bodies}].
Annalen der Physik, 322(10):891–921, 1905.
% 插入其他參考文獻...
\end{thebibliography}
\renewcommand
命令覆蓋默認設置:在導言區添加以下代碼即可去除參考文獻標題。\renewcommand{\refname}{}
然后,在thebibliography
環境中按照適當的格式插入參考文獻。例如:
\begin{thebibliography}{9}
\bibitem{latexcompanion}
Michel Goossens, Frank Mittelbach, and Alexander Samarin.
\textit{The \LaTeX\ Companion}.
Addison-Wesley, Reading, Massachusetts, 1993.
\bibitem{einstein}
Albert Einstein.
\textit{Zur Elektrodynamik bewegter K{\"o}rper}. (German)
[\textit{On the electrodynamics of moving bodies}].
Annalen der Physik, 322(10):891–921, 1905.
% 插入其他參考文獻...
\end{thebibliography}
這樣,在文檔中將只顯示參考文獻條目,而不會顯示標題。