gpt4 book ai didi

latex - 如何使用 pandoc 在 Markdown 中引用图形?

转载 作者:行者123 更新时间:2023-12-03 04:54:32 26 4
gpt4 key购买 nike

我目前正在用 Markdown 编写文档,我想从我的文本中引用图像。

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

![image1](img/image1.png)

我想做这个引用,因为在将我的 markdown 转换为 pdf 后,图像被放置在之后的一两页中,并且该文档没有任何意义。

更新:

我已经尝试过Ryan's answerthat post我无法让它发挥作用。显然代码:

[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} 未出现:未创建引用。
  • (\autoref{image}) 变为 \href{\#image}{image} :未检测到交叉引用。

然后,当我将其转换为 pdf 时,它显然没有链接到图像。有一个链接,但没有链接到任何内容。

任何帮助将不胜感激!!

最佳答案

在 pandoc 中你甚至可以这样做:

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

关于latex - 如何使用 pandoc 在 Markdown 中引用图形?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9434536/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com