私は現在マークダウンでドキュメントを書いており、テキストから画像への参照を作成したいと思います。
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}
\end{figure}
A reference to the \href{\#image}{image}.
私は2つの問題に気づきました:
\label{image}
表示されません。参照は作成されません。(\autoref{image})
なる\href{\#image}{image}
:交差参照が検出されません。
そして、それをpdfに変換すると、明らかに画像にリンクしません。リンクはありますが、何にもリンクしていません。
どんな助けでも大歓迎です!!