我目前正在用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时,显然不会链接至图像。有一个链接,但没有任何链接。
任何帮助将非常感激!!