如何更改 ACM 会议模板中的间距?

如何更改 ACM 会议模板中的间距?

我正在使用 ACM 会议模板。我无法在第一作者的电子邮件和第二作者的电子邮件之间添加空格。

我有这个代码:

\documentclass[sigconf]{acmart}
\usepackage[portuguese]{babel}

\settopmatter{authorsperrow=3}

\AtBeginDocument{%
  \providecommand\BibTeX{{%
    \normalfont B\kern-0.5em{\scshape i\kern-0.25em b}\kern-0.8em\TeX}}}

\setcopyright{acmcopyright}
\copyrightyear{2018}
\acmYear{2018}
\acmDOI{10.1145/1122445.1122456}

\acmConference[Woodstock '18]{Woodstock '18: ACM Symposium on Neural
  Gaze Detection}{June 03--05, 2018}{Woodstock, NY}
\acmBooktitle{Woodstock '18: ACM Symposium on Neural Gaze Detection,
  June 03--05, 2018, Woodstock, NY}
\acmPrice{15.00}
\acmISBN{978-1-4503-XXXX-X/18/06}

\begin{document}

\title{Paper ACM Template}

\author{Denis B. Oliveira}
\email{[email protected]}
\authornotemark[1]
\affiliation{
  \institution{Instituto Federal de Educação, Ciência e Tecnologia do Sul de Minas Gerais}
  \city{Poços de Caldas}
  \state{MG}
  \country{Brasil}
}

\author{Ricardo R. de Oliveira}
\email{[email protected]}
\authornotemark[1]
\affiliation{
  \institution{Instituto Federal de Educação, Ciência e Tecnologia do Sul de Minas Gerais}
  \city{Poços de Caldas}
  \state{MG}
  \country{Brasil}
}

\author{Ricardo F. Vilela}
\email{[email protected]}
\authornotemark[2]
\affiliation{
  \institution{Universidade de São Paulo}
  \city{São Carlos}
  \state{SP}
  \country{Brasil}
}

\author{Victor H. S. C. Pinto}
\email{[email protected]}
\authornotemark[3]
\affiliation{
  \institution{Zup Innovation}
  \city{São Paulo}
  \state{SP}
  \country{Brasil}
}

\author{Roberto N. Ungarelli}
\email{[email protected]}
\authornotemark[4]
\affiliation{
  \institution{Oceano Azul TI}
  \city{Brasília}
  \state{DF}
  \country{Brasil}
}

\renewcommand{\shortauthors}{Denis B. Oliveira, et al.}

\begin{abstract}
\textbf{Background}: ...
\end{abstract}

\begin{CCSXML}
<ccs2012>
   <concept>
       <concept_id>10002944.10011123</concept_id>
       <concept_desc>General and reference~Cross-computing tools and techniques</concept_desc>
       <concept_significance>500</concept_significance>
       </concept>
   <concept>
       <concept_id>10002944.10011123.10011674</concept_id>
       <concept_desc>General and reference~Performance</concept_desc>
       <concept_significance>500</concept_significance>
       </concept>
 </ccs2012>
\end{CCSXML}

\ccsdesc[500]{General and reference~Cross-computing tools and techniques}
\ccsdesc[500]{General and reference~Performance}

\keywords{Teste de desempenho, Plataforma como serviço, Sistema como serviço, Avaliação Experimental, Computação em nuvem}

\maketitle

\section{Introdução}
...

%\bibliographystyle{ACM-Reference-Format}
%\bibliography{references.bib}

\end{document}
\endinput

结果:

在此处输入图片描述

acmart.cls 文件

如何在第一作者和第二作者的电子邮件之间添加空格?

答案1

每行只需设置为 2 位作者:

\settopmatter{authorsperrow=2}

现在它合适了。

编辑:第二个选项

一个选择是将来自同一机构的两个人放在一个单元格中,并可能缩写机构名称

由你决定。

\documentclass[sigconf]{acmart}
\usepackage[portuguese]{babel}

\settopmatter{authorsperrow=2}

\AtBeginDocument{%
  \providecommand\BibTeX{{%
    \normalfont B\kern-0.5em{\scshape i\kern-0.25em b}\kern-0.8em\TeX}}}

\setcopyright{acmcopyright}
\copyrightyear{2018}
\acmYear{2018}
\acmDOI{10.1145/1122445.1122456}

\acmConference[Woodstock '18]{Woodstock '18: ACM Symposium on Neural
  Gaze Detection}{June 03--05, 2018}{Woodstock, NY}
\acmBooktitle{Woodstock '18: ACM Symposium on Neural Gaze Detection,
  June 03--05, 2018, Woodstock, NY}
\acmPrice{15.00}
\acmISBN{978-1-4503-XXXX-X/18/06}

\begin{document}

\title{Paper ACM Template}

\author{Denis B. Oliveira}
\email{[email protected]}
\authornotemark[1]


\author{Ricardo R. de Oliveira}
\email{[email protected]}
\authornotemark[1]
\affiliation{
  \institution{IFSULDEMINAS}
  \city{Poços de Caldas}
  \state{MG}
  \country{Brasil}
}

\author{Ricardo F. Vilela}
\email{[email protected]}
\authornotemark[2]
\affiliation{
  \institution{Universidade de São Paulo}
  \city{São Carlos}
  \state{SP}
  \country{Brasil}
}

\author{Victor H. S. C. Pinto}
\email{[email protected]}
\authornotemark[3]
\affiliation{
  \institution{Zup Innovation}
  \city{São Paulo}
  \state{SP}
  \country{Brasil}
}

\author{Roberto N. Ungarelli}
\email{[email protected]}
\authornotemark[4]
\affiliation{
  \institution{Oceano Azul TI}
  \city{Brasília}
  \state{DF}
  \country{Brasil}
}

\renewcommand{\shortauthors}{Denis B. Oliveira, et al.}

\begin{abstract}
\textbf{Background}: ...
\end{abstract}

\begin{CCSXML}
<ccs2012>
   <concept>
       <concept_id>10002944.10011123</concept_id>
       <concept_desc>General and reference~Cross-computing tools and techniques</concept_desc>
       <concept_significance>500</concept_significance>
       </concept>
   <concept>
       <concept_id>10002944.10011123.10011674</concept_id>
       <concept_desc>General and reference~Performance</concept_desc>
       <concept_significance>500</concept_significance>
       </concept>
 </ccs2012>
\end{CCSXML}

\ccsdesc[500]{General and reference~Cross-computing tools and techniques}
\ccsdesc[500]{General and reference~Performance}

\keywords{Teste de desempenho, Plataforma como serviço, Sistema como serviço, Avaliação Experimental, Computação em nuvem}

\maketitle

\section{Introdução}
...

%\bibliographystyle{ACM-Reference-Format}
%\bibliography{references.bib}

\end{document}

编辑:第三个选项

如果你真的想这样做,你可以尝试设置

\makeatletter
%\def\@authorfont{\normalfont\small} %change font. don't do this.
%\def\@affiliationfont{\normalfont\small} %change font. don't do this.
\def\author@bx@sep{0pc}
\makeatother

\begin{document}

然后就合适了。但请注意,您所做的所有更改都可能化为乌有:如果编辑想要一个 2x2 设置,最后一行只有一个作者,或者一个 2x2 选项,同一个单元格中同一机构的作者,他就会这样做。

相关内容