最近我开始使用 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
第二个。请根据需要进行更改。