我目前正在写一个文件的减价,我想作出一个参考从我的文字图像。
this is my text, I want a reference to my image1 [here]. blablabla
![image1](img/image1.png)
我想这样做的参考,因为后转换我的标记成 pdf,图片被放置在一个或两个页面后,文件没有任何意义。
更新:
我已经试过 那个帖子中的 Ryan 的回答,但是我不能让它工作。 Apparently the code :
[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}
doesn't appear : no reference is created.(\autoref{image})
变成 \href{\#image}{image}
: 没有检测到交叉引用。然后,当我把它转换成 pdf 格式的时候,它显然没有链接到图片上。有一个链接,但它没有链接到任何东西。
任何帮助都将不胜感激! !