从草稿中删除图像,即使是在 {figure*} 中定义的图像

从草稿中删除图像,即使是在 {figure*} 中定义的图像

我正在尝试编写 .tex 文档的草稿,省略所有图片。给出的答案这里, IE:

\usepackage{comment}
\excludecomment{figure}
\let\endfigure\relax

适用于包含在\begin{figure}块中的图像,但不适用于单个\begin{figure*}图像。

我尝试\excludecomment{figure*}在上面的块中添加一行,但是出现错误:

Extra }, or forgotten \endgroup. [\end{figure*}]

我如何排除全部最终 PDF 中的图像?

答案1

我相信这应该可行,但尚未经过测试(您没有提供最小(非)工作示例;如果它不起作用,请告诉我,我会删除答案;或者提供 MWE):

\usepackage{comment}
\excludecomment{figure}
\let\endfigure\relax
\expandafter\let\csname figure*\endcsname\figure
\expandafter\let\csname endfigure*\endcsname\endfigure

问题是您无法使用包含 的名称*。这是一种“黑客行为”,可使figure*环境执行的操作与 完全相同figure

相关内容