如何在 acmart latex 模板中放入两篇不同语言的摘要?

如何在 acmart latex 模板中放入两篇不同语言的摘要?

最近我开始使用 acmart 模板为会议撰写论文,但我需要用两种语言撰写摘要,显然模板不允许撰写两份摘要,但我不确定。

我需要做类似的事情:

两篇不同语言的摘要。

我已经尝试了以下解决方案,但它在模板中不起作用: 同一页上有不同语言的摘要

答案1

acmart按原样存储放置在环境中的内容abstract。因此,可以在单个abstract环境中放置多个摘要:

在此处输入图片描述

\documentclass{acmart}

\usepackage{lipsum} % Just for this example

\title{A title}
\author{An author}

\begin{document}

\begin{abstract}
  \setlength{\parindent}{0pt}% Remove paragraph indentation
  \textbf{Abstract A}\par
  \lipsum*[1] % First abstract
  \par
  \medskip % Add a small space between the two abstracts
  \textbf{Abstract B}\par
  \lipsum*[2] % Second abstract
\end{abstract}

\maketitle

\end{document}

如果您希望添加关键字,可以abstract使用与期刊通常使用的相同设置将它们添加到环境中:

在此处输入图片描述

\documentclass{acmart}

\usepackage{lipsum} % Just for this example

\title{A title}
\author{An author}

\begin{document}

\begin{abstract}
  \setlength{\parindent}{0pt}% Remove paragraph indentation
  \textbf{Abstract A}\par
  \lipsum*[1] % First abstract
  \par
  \medskip
  % Keywords associated with first abstract
  {\small Additional Key Words and Phrases: one, two, three, four, five, six\par}
  \medskip % Add a small space between the two abstracts
  \textbf{Abstract B}\par
  \lipsum*[2] % Second abstract
  \par
  \medskip
  % Keywords associated with second abstract
  {\small Keywords: seven, eight, nine, ten, eleven, twelve\par}
\end{abstract}

\maketitle

\hypersetup{% Manually insert keywords you would use
  pdfkeywords = {one, two, three, four, five, six, seven, eight, nine, ten, eleven, twelve}
}

\end{document}

由于您没有指定任何\keywords,因此您可以使用 更新 PDF 属性(\documentclass当您使用 时由 自动完成\keywords\hypersetup{pdfkeywords = {...}}

在此处输入图片描述

关键字的前缀取决于\documentclass您传递给的选项acmart。在上面的例子中,我使用了Additional Key Words and Phrases第一个和Keywords第二个。请根据需要进行更改。

相关内容