私は現在、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}