使用參考書目在括號中編號參考文獻

使用參考書目在括號中編號參考文獻

我正在使用 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}

相關內容