是否可以防止图形内容被渲染?我有一本很大的书籍文档,为了在草稿处理时加快编译速度,我希望有某种方法可以忽略图像的内容,但确保图形大小保持不变。
在一些情况下我使用如下代码:
\includegraphics[width=\linewidth]{figure.pdf}
所以我不知道图像的实际尺寸。
答案1
您可以将标志赋予具有其他含义的draft
包,因为它为调用的包提供了选项(尽管其中一些可能会忽略它)。documentclass
draft
或者,graphicx
使用草稿选项调用包应该可以执行您想要的操作。
\documentclass[draft]{article}
或者
\usepackage[draft]{graphicx}
但是,如果您在草稿模式下想要查看其中一个图形而不想将其全部添加到输出中,则可以通过如下设置来取消每个文件的草稿draft
模式false
:
\includegraphics[draft=false]{image.pdf}
答案2
您可以使用该包draftfigure
为了获得相同的结果并修改关闭图形的显示:
\documentclass{article}
\usepackage{graphicx}
\usepackage[allfiguresdraft]{draftfigure}
\begin{document}
\includegraphics[width=50pt]{example-image-a}
\includegraphics[draft=false,width=50pt]{example-image-b}
\setdf{content={This figure is switched off.}}
\includegraphics[width=50pt]{example-image-c}
\end{document}