Latex中使用thebibliography環(huán)境時(shí)去除參考文獻(xiàn)標(biāo)題

小云
1245
2023-08-05 18:32:16

使用thebibliography環(huán)境時(shí),默認(rèn)會(huì)添加一個(gè)參考文獻(xiàn)標(biāo)題。如果不想顯示標(biāo)題,可以手動(dòng)刪除或者使用\renewcommand命令來(lái)覆蓋默認(rèn)設(shè)置。以下是兩種方法:

  1. 手動(dòng)刪除標(biāo)題:在thebibliography環(huán)境開(kāi)始之前添加\section*{參考文獻(xiàn)}來(lái)手動(dòng)添加一個(gè)無(wú)編號(hào)的標(biāo)題。然后,刪除thebibliography環(huán)境內(nèi)的\bibliographystyle\bibliography命令,將參考文獻(xiàn)以適當(dāng)?shù)母袷街苯硬迦氕h(huán)境中。例如:
\section*{參考文獻(xiàn)}
\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.
% 插入其他參考文獻(xiàn)...
\end{thebibliography}
  1. 使用\renewcommand命令覆蓋默認(rèn)設(shè)置:在導(dǎo)言區(qū)添加以下代碼即可去除參考文獻(xiàn)標(biāo)題。
\renewcommand{\refname}{}

然后,在thebibliography環(huán)境中按照適當(dāng)?shù)母袷讲迦雲(yún)⒖嘉墨I(xiàn)。例如:

\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.
% 插入其他參考文獻(xiàn)...
\end{thebibliography}

這樣,在文檔中將只顯示參考文獻(xiàn)條目,而不會(huì)顯示標(biāo)題。

0