我正在使用todonotes
包的missingfigure
命令作为图像的占位符,这些图像将来会添加到我的文档中。\ref{}
这些图像有什么用处吗?也就是说,我想添加如下文本:
`This is shown in Figure \ref{OneOfMyMissingFigures}.`
这可能吗?我在文档中没有看到任何给它贴标签的方法todonotes
。
答案1
浮点数中的 必须\label
位于 或 之后,因此唯一缺少的元素必须是,暂时用 替换。例如:\caption
figure
\includegraphics
\missingfigure
\documentclass{article}
\usepackage{graphicx}
\usepackage{todonotes}
\begin{document}
\section{One}
The figure \ref{nicefigure} is nice, but the missing figure \ref{OneOfMyMissingFigures} will be stunning.
\section{Two}
Some text
\begin{figure}[h]
\centering
\missingfigure{\Huge Nice this triangle?}
\caption{Some caption}
\label{nicefigure}
\end{figure}
\section{Three}
Some more text
\begin{figure}[h]
\centering
\missingfigure{\Huge I need the image, now!}
\caption{A missing figure}
\label{OneOfMyMissingFigures}
\end{figure}
\end{document}