評論包不起作用(有案例)

評論包不起作用(有案例)
\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)。

相關內容