我正在使用 thebibliography 环境来引用参考文献。一旦我在文本中引用了某个参考文献 (\cite{ref1}),它就会显示为 [1]。我想将其放在括号 (1) 中。可以吗?
致谢
答案1
我假设您希望在引用标注和参考书目本身中使用圆括号而不是方括号。
\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}