我正在使用 \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}