%
在 LaTeX 中开始行末注释。有什么方法可以注释整个段落而不%
在每行前面添加?
注意:我在 中编写了我的 LaTeX 代码texmaker
。
答案1
该verbatim
包提供了一个comment
处理输入块的环境:
\documentclass{article}
\usepackage{verbatim}
\begin{document}
Normal text that will be printed.
\begin{comment}
Text and other input \( x^2 \) that will be ignored.
\section{Heading}
\label{sec:heading}
Even this heading.
\end{comment}
Further material that will be printed.
\end{document}
答案2
如果问题是如何在不手动%
在每行开头添加一个,您可以在 texmaker 中执行以下操作。
苹果系统
选择要评论的文本块并点击
Cmd+T评论,以及
Cmd+U取消注释。
Windows/Linux(我认为......)
选择要评论的文本块并点击
Ctrl+T评论,以及
Ctrl+U取消注释。