Estoy usando el entorno thebibliography para mis referencias. Una vez que cito una referencia particular (\cite{ref1}) en mi texto, aparece como [1], por ejemplo. En su lugar, quiero ponerlo entre paréntesis (1). ¿Es eso posible?
Con gracias
Respuesta1
Supongo que desea utilizar paréntesis redondos en lugar de corchetes tanto en las citas como en la bibliografía misma.
\documentclass{article}
% Change appearance of numeric labels in citation call-outs
\usepackage{cite}
\renewcommand\citeleft{(}
\renewcommand\citeright{)}
% Change appearance of numeric labels in bibliography
\makeatletter
\renewcommand{\@biblabel}[1]{(#1)}
\makeatother
\begin{document}
\cite{myref}
\begin{thebibliography}{9}
\bibitem{myref} Some entry.
\end{thebibliography}
\end{document}