如何取消 amsproc 类中的引用编号

如何取消 amsproc 类中的引用编号
\documentclass{amsproc}

\begin{document}

def \cite{abc}

\begin{thebibliography}{99}
\bibitem{abc} abc
\end{thebibliography}

\end{document}

我正在使用该类amsproc排版数学文档。文本中的引用编号[1]以粗体显示。我认为如果不加粗会更好看。有没有办法取消加粗?或者是否有类似的包我应该使用其中不加粗的?

答案1

该类使用

\def\citeform#1{{\bfseries#1}}

所以你需要删除\bfseries

\documentclass{amsproc}

\renewcommand\citeform[1]{{#1}}

\begin{document}

def \cite{abc}

\begin{thebibliography}{99}
\bibitem{abc} abc
\end{thebibliography}

\end{document}

在此处输入图片描述

如果您将文档提交给期刊,他们很可能会覆盖该更改。

相关内容