我想在文档中添加一个空白图形并添加标题等,以便稍后添加图形。有没有直接的方法可以做到这一点?例如插入一个带有大 X 的白色框或类似的东西?
答案1
- 基于LaTeX 中的示例图像?。
- MWE 包提供了示例图片。
- 另一种可能性是选择包含黑色方块
demo
的包装。graphicx
- 我更喜欢使用“普通”
\includegraphics
命令的方式,因为这意味着稍后添加实际内容时更改较少。另一方面,\missingfigure
另一个答案中的命令非常清楚地表明必须执行某些操作(这取决于用例,这很好)。
\documentclass{article}
\usepackage{graphicx}
\usepackage{float}
\begin{document}
Text before.
\begin{figure}[H]
\centering
\includegraphics[width=50mm,height=20mm]{example-image-a}
\caption{Caption}
\end{figure}
Text after.
\end{document}
\documentclass{article}
\usepackage[demo]{graphicx}
\usepackage{float}
\begin{document}
Text before.
\begin{figure}[H]
\centering
\includegraphics[width=150mm,height=20mm]{}
\caption{Caption}
\end{figure}
Text after.
\end{document}
答案2
还有其他几种方法。
\documentclass{article}
\usepackage{graphicx}
\usepackage{todonotes}
\begin{document}
\begin{figure}
\centering
% \missingfigure is from todonotes
\missingfigure[figwidth=\linewidth,figcolor=white]{Some text if needed}
\caption{Bla}
\end{figure}
\begin{figure}
\centering
\framebox[7cm]{\scalebox{15}{X}}
\caption{Bla}
\end{figure}
\end{document}