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

여기에 이미지 설명을 입력하세요

관련 정보