コメント パッケージが機能しない (ケースあり)

コメント パッケージが機能しない (ケースあり)
\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議論自体も)。

関連情報