Answers for "comment 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

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 math comment formula

documentclass{article}
usepackage{amsmath}

begin{document}
begin{align*}
    3+x &=4 && text{we are trying to solve for } x\
    x &=4-3 && text{Subtract 3 from both sides}\
    x &=1   && x text{ must be one}
end{align*}
end{document}
Posted by: Guest on November-25-2020

Browse Popular Code Answers by Language