![使用參考書目在括號中編號參考文獻](https://rvso.com/image/310170/%E4%BD%BF%E7%94%A8%E5%8F%83%E8%80%83%E6%9B%B8%E7%9B%AE%E5%9C%A8%E6%8B%AC%E8%99%9F%E4%B8%AD%E7%B7%A8%E8%99%9F%E5%8F%83%E8%80%83%E6%96%87%E7%8D%BB.png)
我正在使用 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}