ACM論文投稿時常用的幾項操作

一、我們發現ACM的latex模板中會有ACM Reference Format信息,如下:

投稿時,可以使用如下的方法將其去掉,在 \documentclass[sigconf]{acmart} 下面直接添加這幾行即可去掉

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

 

二、現在的會議一般都是雙盲審,因此需要將投稿作者設置成anonymous,設置後的樣式以及具體設置方法如下:

\author{Anonymous authors}
 \affiliation{
   \institution{Paper under double-blind review}
 }
\renewcommand{\shortauthors}{Anonymous Author, et al.}

 

三、投稿時 如果要求打印頁碼,並且不想打印輸出CSS部分,追加這兩項配置(下面紅色字體)即可:

       \settopmatter{printacmref=false,  printccs=false,  printfolios=true}

      注:Full papers: Contain no more than twelve (12) single-spaced and numbered pages

             這句話的要求是: 最多12頁、且單行距並且要顯示頁碼。

 

四、投稿時,在每頁的頁眉會顯示下圖的①和②,如果想將其替換成本次投稿的內容,這樣修改即可:

針對①,修改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.}

 

ACM投稿Latex模板頁面

 

修改後的頁面

 

參考文獻:

1)https://blog.csdn.net/MX_studying/article/details/88682175

2)https://tex.stackexchange.com/questions/346292/how-to-remove-conference-information-from-the-acm-2017-sigconf-template

 

發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章