Answers for "latex comment block"

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
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

latex block comment

...
longdef/*#1*/{}		% don't forget this line
...

begin{document}

/* This is a block-
	comment over
    multiple lines
    in latex
*/
Posted by: Guest on October-02-2021
0

latex uncomment multiple lines

Mark section
Ctrl + t 	//multiline comment
Crtl + u 	//mutliline uncomment
Posted by: Guest on August-13-2020

Browse Popular Code Answers by Language