1. ホーム
  2. latex

[解決済み] pandocを使用してmarkdownで図への参照を作成するにはどうすればよいですか?

2022-09-13 13:36:33

質問

現在、マークダウンで文書を書いているのですが、テキストから画像を参照させたいと思っています。

this is my text, I want a reference to my image1 [here]. blablabla

![image1](img/image1.png)

マークダウンをpdfに変換した後、画像が1ページか2ページ後に配置されてしまい、ドキュメントが意味をなさないので、その参照をしたいのです。

UPDATEしてください。

私が試したのは ライアンの回答 その投稿 と表示され、動作させることができません。 どうやらコード:

[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に変換すると、明らかに画像にリンクされません。リンクはありますが、何もリンクされていません。

どんな助けでも大いに感謝されるでしょう!

どのように解決するのですか?

pandocでは、こんなこともできます。

![This is the caption\label{mylabel}](/url/of/image.png)
See figure \ref{mylabel}.