pandocを使用してマークダウンの図を参照するにはどうすればよいですか?
私は現在マークダウンでドキュメントを書いており、テキストから画像への参照を作成したいと思います。 this is my text, I want a reference to my image1 [here]. blablabla ![image1](img/image1.png) マークダウンをpdfに変換した後、画像が1〜2ページ後に配置され、ドキュメントが意味をなさないため、この参照を行います。 更新: 私はその投稿でライアンの答えを試しましたが、それを機能させることはできません。どうやらコード: [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} …