参考书目环境中的括号

参考书目环境中的括号

我想将 thebibliography 环境条目中的默认方括号更改为圆括号。

样本:

% sample.tex

\documentclass{article}

\begin{document}
\pagestyle{empty}
\begin{thebibliography}{99}
\bibitem[Sample]{Sample} Sample.
\end{thebibliography}

\end{document}

输出为:

在此处输入图片描述

但我想要:

(Sample) Sample

是否可以在“thebibliography”环境中更改它?

答案1

对于标准类,您必须\@biblabel按如下方式更改内部命令:

\documentclass{article}

\makeatletter
\def\@biblabel#1{(#1)}
\makeatother

\begin{document}
\pagestyle{empty}
\begin{thebibliography}{99}
\bibitem[Sample]{Sample} Sample.
\end{thebibliography}

\end{document}

相关内容