我目前在 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}