Actualmente estoy usando este tipo de bibliografía en LaTeX:
\begin{thebibliography}{1 cm}
\bibitem{Hochstadt}M.C. Weber, Sleeping Dogs, Journal of Medical Australia (1963) 930 - 932.
\end{thebibliography}
Ahora bien, este tipo de referencia aparece con un número delante. Preferiría utilizar una abreviatura para el artículo del que estoy hablando: por ejemplo, Weber63 o algo así. ¿Cómo puedo lograr esto?
Respuesta1
Puede especificar la etiqueta para cada uno \bibitem
:
\begin{thebibliography}{1 cm}
\bibitem[Weber63]{Hochstadt} ...
\end{thebibliography}
Si no especifica la etiqueta para algunas entradas, se numerarán de forma normal en su orden de aparición:
\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}