是否有可以用作占位符的命令\includegraphics
?我想使用这样的占位符稍后添加原始图形。
答案1
现在已经是 2018 年了,这变得非常容易。
简单地:
\includegraphics[宽度=\textwidth]{示例图像-a}
这mwe
为此需要安装软件包(但不必包含在序言中)。例如,如果使用 MiKTex,它将在构建文档时提供安装此软件包的建议。
还有其他可用的占位符图像。
示例文档来自另一个 StackExchange 答案:
\documentclass[12pt,a4paper]{article}
\usepackage{graphicx}
\begin{document}
\noindent\includegraphics[width=3cm]{example-image-a}\qquad
\includegraphics[width=3cm]{example-image-golden}\qquad
\includegraphics[width=3cm]{example-grid-100x100pt}
\noindent\includegraphics[height=5cm]{example-image-b}
\noindent\includegraphics[scale=0.5]{example-image-c}
\noindent\includegraphics[width=3cm]{example-image}
\end{document}
答案2
todonotes
提供\missingfigure
专门为这种情况设计的命令
\documentclass{article}
\usepackage{todonotes}
\begin{document}
\missingfigure[figwidth=6cm]{Testing a long text string}
\end{document}
答案3
如果您需要省略个别图形而不是全部图形,则首先将一个虚拟图形(foo
此处调用)复制到图形路径,然后使用如下方法:
\includegraphics[draft]{foo}
它将显示类似以下内容:
它还可以节省墨水,并且您可以\includegraphics
按原样使用语法,只需替换并从命令中foo
删除即可。draft
答案4
graphicx
要么使用该demo
选项加载包,\includegraphics
要么用替换\rule{2cm}{2cm}
。