如何添加不同的评论 \begin{comment} , \begin{comment2},

如何添加不同的评论 \begin{comment} , \begin{comment2},

我如何添加几条不同的评论?

\begin{comment} 
something
\end{comment} 

\begin{comment2} 
something2
\end{comment2} 

答案1

你可以使用\newenvironment命令定义自己的注释环境。看一下:

\\newenvironment{comment2}
{\\par\\color{blue}\\textbf{Comment:} \\itshape}
{\\par}

\\begin{comment2}
something2
\\end{comment2}

如果您向我们提供一个最小的工作示例,我们可以尝试将答案集中在您正在寻找的内容上。

相关内容