acmsmall 格式的数字参考编号(用于开发目的)

acmsmall 格式的数字参考编号(用于开发目的)

我正在使用acmsmall模板撰写期刊。但是,参考文献显示为作者-年份格式。在撰写文章时,我更希望使用数字参考文献。提交时,我将恢复为原始引用格式。我该怎么做?MWE 如下。

\documentclass[prodmode,acmtopc]{acmsmall} % Aptara syntax
\usepackage{filecontents}

\begin{filecontents}{jobname.bib}
@book{author_book,
title = {Book's title},
author = {Author, Some},
location = {The City},
publisher = {Publisher},
date = {2005},
}
\end{filecontents}

\usepackage[numbers,sort,compress]{natbib}


\begin{document}
This was explained in \cite{author_book}.

\bibliographystyle{ACM-Reference-Format-Journals}
\bibliography{jobname}
\end{document}

相关内容