为 \documentclass[sigconf, review] 添加摘要

为 \documentclass[sigconf, review] 添加摘要

我正在使用 \documentclass[sigconf, review] 撰写论文,并使用 \begin{abstract} 和 \end{abstract} 撰写摘要。但摘要并未添加到生成的 pdf 中。我错在哪里?

答案1

根据选项判断,您正在使用该acmart课程。

根据手册第 17 页的规定,您需要将摘要 \maketitle

\documentclass[sigconf,review]{acmart}

\usepackage{lipsum} % mock text

\begin{document}

\author{Mirazul Haque}
\title{A title}

\begin{abstract}
This is the abstract
\end{abstract}

\maketitle

\lipsum[1-10]

\end{document}

在此处输入图片描述

相关内容