我想注释掉整个部分以保存文本但不将其呈现在 PDF 中。这可能吗?
答案1
正如评论中指出的那样,这个问题有一个解决方案。对我来说,verbatim
包是最简单的。正如这里给出的
解决方案很简单
\documentclass{article}
\usepackage{verbatim}
\begin{document}
This text will be displayed
\begin{comment}
This text will not be displayed.
\end{comment}
\end{document}