Answers for "multiline comments latex"

3

multi line comments latex

\usepackage{verbatim}
%^that goes at the very top

\begin{comment}
stuff commented out here
\end{comment}
Posted by: Guest on December-04-2020
0

multiline comments latex

\newcommand{\comment}[1]{} %define a new command that effectively does nothing with the input

\comment{
This line of text won't show

This one won't either

You got a proper comment mate!
}
Posted by: Guest on June-23-2021

Browse Popular Code Answers by Language