我正在使用sample-sigconf.tex
来自的ACM 会议模板这里参加 ACM 会议。
模板在偶数页的页眉中添加会议名称和作者姓名,在奇数页的页眉中添加论文标题和会议名称。
我的脚本有两个问题:
1) 在偶数页中,模板添加了一个我没有添加的会议名称,也不知道在哪里可以编辑它。就是这个:Conference'17, July 2017, Washington, DC, USA
。我甚至在脚本中搜索了这个字符串,但没有找到。
2) 在奇数页中,我的论文标题很长,可能很难更改论文标题。标题与作者姓名重叠,如下所示:
脚本如下:
\documentclass[sigconf]{acmart}
\usepackage[T1]{fontenc}
\usepackage{lmodern}
\usepackage{epstopdf}
\usepackage{placeins}
\usepackage{underscore}
\usepackage{lipsum}
\begin{document}
\title{My Paper Title: A Xxxxxx yyy Zzzzzzzzzzz AAAAA Bbbbbbb Ccccccc ddd Eeeeeeeeeeee Ffffffff Ggggg hhh Iiiiiii}
\subtitle{Subtitle}
\author{First Author Name}
\affiliation{%
\institution{XYZ University}
}
\email{first.second@xyz}
\author{Second Author Name}
\affiliation{%
\institution{XYZ University}
}
\email{first.second@xyz}
\begin{abstract}
Abstract goes here.
\end{abstract}
%
% The code below should be generated by the tool at
% http://dl.acm.org/ccs.cfm
% Please copy and paste the code instead of the example below.
%
\begin{CCSXML}
<ccs2012>
<concept>
<concept_id>10010583.10010633.10010645</concept_id>
<concept_desc>Hardware~Design reuse and communication-based design</concept_desc>
<concept_significance>500</concept_significance>
</concept>
<concept>
<concept_id>10010583.10010633.10010645.10003107</concept_id>
<concept_desc>Hardware~Network on chip</concept_desc>
<concept_significance>500</concept_significance>
</concept>
<concept>
<concept_id>10010583.10010633.10010645.10010560</concept_id>
<concept_desc>Hardware~System on a chip</concept_desc>
<concept_significance>500</concept_significance>
</concept>
<concept>
<concept_id>10010583.10010633.10010645.10010648</concept_id>
<concept_desc>Hardware~Platform-based design</concept_desc>
<concept_significance>500</concept_significance>
</concept>
</ccs2012>
\end{CCSXML}
\ccsdesc[500]{Hardware~Design reuse and communication-based design}
\ccsdesc[500]{Hardware~Network on chip}
\ccsdesc[500]{Hardware~System on a chip}
\ccsdesc[500]{Hardware~Platform-based design}
\keywords{hardware, design, system}
\maketitle
\section{Introduction}
\lipsum
\section{Research Question}
\lipsum
\section{Methodology}
\lipsum
\end{document}
答案1
为了缩短标题,请在标题标签中使用可选文本,即控制偶数页运行头的\title[My Paper Title]{My Paper Title: A Xxxxxx yyy Zzzzzzzzzzz AAAAA Bbbbbbb Ccccccc ddd Eeeeeeeeeeee Ffffffff Ggggg hhh Iiiiiii}
标签\acmConference
答案2
参考: (https://www.acm.org/binaries/content/assets/publications/consolidated-tex-template/acmart.pdf)
对于问题 1,添加nonacm
至documentclass
删除Conference'17, July 2017, Washington, DC, USA.
即改变
\documentclass[sigconf]{acmart}
到
\documentclass[nonacm, sigconf]{acmart}
编辑)这是脚本:
\documentclass[nonacm, sigconf]{acmart}
\usepackage[T1]{fontenc}
\usepackage{lmodern}
\usepackage{epstopdf}
\usepackage{placeins}
\usepackage{underscore}
\usepackage{lipsum}
\begin{document}
\title{My Paper Title: A Xxxxxx yyy Zzzzzzzzzzz AAAAA Bbbbbbb Ccccccc ddd Eeeeeeeeeeee Ffffffff Ggggg hhh Iiiiiii}
\subtitle{Subtitle}
\author{First Author Name}
\affiliation{%
\institution{XYZ University}
}
\email{first.second@xyz}
\author{Second Author Name}
\affiliation{%
\institution{XYZ University}
}
\email{first.second@xyz}
\begin{abstract}
Abstract goes here.
\end{abstract}
%
% The code below should be generated by the tool at
% http://dl.acm.org/ccs.cfm
% Please copy and paste the code instead of the example below.
%
\begin{CCSXML}
<ccs2012>
<concept>
<concept_id>10010583.10010633.10010645</concept_id>
<concept_desc>Hardware~Design reuse and communication-based design</concept_desc>
<concept_significance>500</concept_significance>
</concept>
<concept>
<concept_id>10010583.10010633.10010645.10003107</concept_id>
<concept_desc>Hardware~Network on chip</concept_desc>
<concept_significance>500</concept_significance>
</concept>
<concept>
<concept_id>10010583.10010633.10010645.10010560</concept_id>
<concept_desc>Hardware~System on a chip</concept_desc>
<concept_significance>500</concept_significance>
</concept>
<concept>
<concept_id>10010583.10010633.10010645.10010648</concept_id>
<concept_desc>Hardware~Platform-based design</concept_desc>
<concept_significance>500</concept_significance>
</concept>
</ccs2012>
\end{CCSXML}
\ccsdesc[500]{Hardware~Design reuse and communication-based design}
\ccsdesc[500]{Hardware~Network on chip}
\ccsdesc[500]{Hardware~System on a chip}
\ccsdesc[500]{Hardware~Platform-based design}
\keywords{hardware, design, system}
\maketitle
\section{Introduction}
\lipsum
\section{Research Question}
\lipsum
\section{Methodology}
\lipsum
\end{document}