我目前正在用 markdown 编写文档,我想引用我的文本中的图像。
this is my text, I want a reference to my image1 [here]. blablabla
![image1](img/image1.png)
我想做那个参考,因为在将我的 markdown 转换为 pdf 之后,图像会放在一两页之后,并且文档没有任何意义。
更新:
我在那篇文章中尝试了Ryan的回答,但我无法让它发挥作用。显然代码:
[image]: image.png "Image Title"
![Alt text][image]
A reference to the [image](#image).
应该产生:
\begin{figure}[htbp]
\centering
\includegraphics[keepaspectratio,width=\textwidth,height=0.75\textheight]{i mage.png}
\caption{Alt text}
\label{image}
\end{figure}
A reference to the image (\autoref{image}).
相反,我得到:
\begin{figure}[htbp]
\centering
\includegraphics{image.png}
\caption{Alt text}
\end{figure}
A reference to the \href{\#image}{image}.
我注意到两个问题:
\label{image}
没有出现:没有创建参考。(\autoref{image})
变为\href{\#image}{image}
:未检测到交叉引用。
然后,当我将其转换为 pdf 时,它显然没有链接到图像。有一个链接,但它没有链接到任何东西。
任何帮助将非常感激!!