![TeX 中的參考文獻](https://rvso.com/image/305785/TeX%20%E4%B8%AD%E7%9A%84%E5%8F%83%E8%80%83%E6%96%87%E7%8D%BB.png)
我目前在 LaTeX 中使用這種參考書目:
\begin{thebibliography}{1 cm}
\bibitem{Hochstadt}M.C. Weber, Sleeping Dogs, Journal of Medical Australia (1963) 930 - 932.
\end{thebibliography}
現在這種參考顯示前面有一個數字。我寧願使用我正在談論的論文的縮寫:例如 Weber63 或類似的東西。我怎樣才能做到這一點?
答案1
您可以為每個指定標籤\bibitem
:
\begin{thebibliography}{1 cm}
\bibitem[Weber63]{Hochstadt} ...
\end{thebibliography}
如果您沒有為某些條目指定標籤,它們將按照正常的出現順序進行編號:
\begin{thebibliography}{...} % Render:
\bibitem[a]{label1} First entry % [a] First entry
\bibitem{label2} Second entry % [1] Second entry
\bibitem[b]{label3} Third entry % [b] Third entry
\bibitem{label4} Fourth entry % [2] Fourth entry
\end{thebibliography}