解压从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
在我们投稿会议时,一般要求匿名投稿,那么就需要删除一些会议相关的内容,具体事项如下:
如果以上还不能解决问题,说明latex模板加了些保护语句,需要修改.cls文件,打开.cls文件,删除以下信息:
删除2546行开始的这一段:
添加下面两条语句:
\settopmatter{printacmref=false} \renewcommand\footnotetextcopyrightpermission[1]{}针对①,修改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