댓글 패키지가 작동하지 않음(케이스 있음)

댓글 패키지가 작동하지 않음(케이스 있음)
\documentclass[a4paper, 12pt]{article}
\usepackage{comment}

\title{title}

\author
{
\begin{comment}
...
\end{comment}
    Author
}

\begin{document}

\maketitle
\tableofcontents
\section{Introduction}

\end{document}

답변1

다음과 같이 작동합니다.

\documentclass[a4paper, 12pt]{article}

\usepackage{comment}

\title{title}

\begin{comment}
A comment
\end{comment}
\author{Author}

\begin{document}

    \maketitle

    \tableofcontents

    \section{Introduction}

\end{document}

환경은 논쟁에 포함될 수 없기 때문입니다(예, 논쟁에서도 마찬가지입니다 comment).

관련 정보