可能重复:
如何在 LaTeX 文件中写入隐藏注释?
\documentclass{article}
\def\hide{\iffalse}
\def\show{\hi}
\begin{document}
111111
\hide
222222
\show
333333
\hide
444444
\show
555555
\end{document}
答案1
您可以使用
\let\hide\iffalse
\let\unhide\fi% rather than \show
达到你想要的结果:
\documentclass{article}
\let\hide\iffalse
\let\unhide\fi
\begin{document}
111111 \par
\hide
222222 \par
\unhide
333333 \par
\hide
444444 \par
\unhide
555555
\end{document}
然而,使用由comment
包裹:
\documentclass{article}
\usepackage{comment}% http://ctan.org/pkg/comment
\begin{document}
111111 \par
\begin{comment}
222222 \par
\end{comment}
333333 \par
\begin{comment}
444444 \par
\end{comment}
555555
\end{document}
comment
允许对评论环境进行版本控制。