新增 \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}

在此輸入影像描述

相關內容