解压从ACM会议指定官网下载的压缩包,一般使用sample-sigconf模板。新建一个文件夹将acmart-master中acmart.cls 、acmart.bib、ACM-Reference-Format.bst及samples文件夹下sigconf拷入,编译即可。报错是因为没有考入sample下的图片sample-franklin.png。另外。Texstudio的编译改为Xelatex。Latex的内容编写与其他模板大致相同,具体这里不详细说,可以参考其他的博客。
可参考以下两个博客:
1.https://www.jianshu.com/p/3e842d67ada2
2.https://blog.csdn.net/qq_31813549/article/details/89154767
设置
\documentclass
\bibtex
\right management 提交后会发送这个
\Submission ID 用于双盲
首部
\document
\title \maketitle 首部建立 短标题是为了防止页眉被覆盖
\author 应该完整(元数据),每一个作者都应该单独建立,不能用组进行划分
\abstract
\CCSXML 自己生成,然后复制过来,至少3-5个 500,300,100重要性
https://dl.acm.org/ccs/ccs.cfm
\keywords 自己生成
\section
\subsection
\begin{acks}
...
\end{acks}
\bibliographystyle{ACM-Reference-Format} 在\end{document}之前
\bibliography{bibfile} 引用排序依照作者年
\appendix 在\end{document}之前
\section{}
\end{document}
在我们投稿会议时,一般要求匿名投稿,那么就需要删除一些会议相关的内容,具体事项如下:
\usepackage{fancyhdr}
\pagestyle{empty}
如果以上还不能解决问题,说明latex模板加了些保护语句,需要修改.cls文件,打开.cls文件,删除以下信息:
删除2546行开始的这一段:
添加下面两条语句:
\settopmatter{printacmref=false}
\renewcommand\footnotetextcopyrightpermission[1]{}
\author{Anonymous authors}
\affiliation{
\institution{Paper under double-blind review}
}
\renewcommand{\shortauthors}{Anonymous Author, et al.}
针对①,修改acmart.cls文件的第1216行,进行修改即可,例如:
修改前:\acmConference[Conference'17]{ACM Conference}{July 2017}{Washington, DC, USA}%
修改后:\acmConference[MobiCom'20]{ACM Conference}{Sep 2020}{London, UK}%
针对②,修改latex源文件(例:sample-sigconf.tex)即可,例如:
修改前:\renewcommand{\shortauthors}{Trovato and Tobin, et al.}
修改后:\renewcommand{\shortauthors}{Anonymous Author, et al.}
参考博客
1.https://blog.csdn.net/jdbc/article/details/104268363
2.https://blog.csdn.net/qq_31813549/article/details/89154767