我目前正在用markdown編寫一個文檔,並且想從我的文本中對圖像進行引用。如何使用pandoc對降價數字進行引用?
this is my text, I want a reference to my image1 [here]. blablabla
![image1](img/image1.png)
我想這樣做參考,因爲我降價轉換爲PDF格式後,圖像得到安置在一兩頁後的文件沒有任何意義。
UPDATE:
我試過在that postRyan's answer,我不能讓它工作。 顯然代碼:
[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}
沒有按」 t出現:不參考被創建。(\autoref{image})
變成\href{\#image}{image}
:未檢測到交叉參考。
然後,當我將它轉換爲pdf時,它顯然不鏈接到圖像。有一個鏈接,但它不鏈接到任何東西。
任何幫助將不勝感激!
您是否嘗試過http://groups.google.com/group/pandoc-discuss/msg/4a42442657a96414中提及的方法? – 2012-02-24 16:47:01
我測試過了,它不會產生autoref。怪異的...... – 2012-02-27 09:34:19
也許你應該編輯你的問題,包括你的嘗試,你得到了什麼,你想要什麼(以便它會更容易幫助你)。 – 2012-02-27 10:01:11