如何使用pandoc引用Markdown中的图形?
我目前正在用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} …