Answers for "comment out lines in latex"

1

latex long comments

documentclass{article}
usepackage{verbatim}	%You can use long comments from this package
begin{document}
    This text will be displayed
begin{comment}
    This text will not be displayed.
end{comment}
end{document}
Posted by: Guest on March-19-2021
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

Code answers related to "comment out lines in latex"

Browse Popular Code Answers by Language