我正在尝试将标题为“ABSTRACT”的英文摘要与标题为“KEYWORDS”的关键词放在一起,并将标题为“RESUMO”的巴西葡萄牙语摘要与标题为“PALAVRAS-CHAVE”的关键词放在一起。有人能帮我吗?我正在使用 ACM 的“sigconf”模板(zip 文件链接如下)。
答案1
添加第二个摘要并不困难。对于关键词,我们必须稍微扩展一下。
\documentclass[sigconf]{acmart}
\usepackage[brazil,english]{babel}
\usepackage{lipsum} % for mock text
\makeatletter
\patchcmd{\maketitle}
{\andify\authors}
{\add@brazil@keywords\andify\authors}
{}{}
\def\brazilkeywords#1{%
\gdef\add@brazil@keywords{%
\@specialsection{Palavras-chave}#1\par
}%
}
\makeatother
\begin{document}
\title{Title}
\author{Me}
\begin{abstract}
This is the abstract in English.
\begin{otherlanguage}{brazil}
\section*{\abstractname}
Este é o resumo em português
\end{otherlanguage}
\end{abstract}
\keywords{Abc, def}
\brazilkeywords{Ghi, jkl}
\maketitle
\lipsum[1-10]
\end{document}