天天看点

Latex中ACM-Reference-Format顺序与论文引用顺序不一致solution

  1. 在第一次编译的时候,先使用\bibliographystyle{unsrt}而非模板的\bibliographystyle{ACM-Reference-Format}的进行按顺序的编译
Latex中ACM-Reference-Format顺序与论文引用顺序不一致solution
  1. 在之后的编译中,使用\bibliographystyle{ACM-Reference-Format}编译.
    Latex中ACM-Reference-Format顺序与论文引用顺序不一致solution
    注意,之后要是引用有增加删除都需要重复12的步骤;

3.想要删掉ACM Reference Format信息:

Latex中ACM-Reference-Format顺序与论文引用顺序不一致solution

solution:

在\begin{document}添加以下信息:

\settopmatter{printacmref=false} % Removes citation information below abstract
\renewcommand\footnotetextcopyrightpermission[1]{} % removes footnote with conference information in first column
\pagestyle{plain} % removes running headers
           

改完后如下图

Latex中ACM-Reference-Format顺序与论文引用顺序不一致solution

4.想要删掉

Latex中ACM-Reference-Format顺序与论文引用顺序不一致solution

solution:

\documentclass[manuscript,screen,review]{acmart}

改为

\documentclass[manuscript,screen,review,nonacm]{acmart}

然后原本53行的信息就无啦

Latex中ACM-Reference-Format顺序与论文引用顺序不一致solution