带有工具提示或替代文本的 Latex 超链接

带有工具提示或替代文本的 Latex 超链接

我正在尝试找出一种方法来向我的图像和超链接添加工具提示或替代文本。我使用转换器将 markdown 文档转换为 latex,因此我需要以下内容:

这将是我的 Markdown 文档中的一个带有替代文本的链接:

My favorite search engine is [Duck Duck Go](https://duckduckgo.com "The best search engine for privacy").

我最喜欢的搜索引擎是鸭鸭走

您可以将鼠标悬停在链接上以获取替代文本。

对于图像也类似:

![The San Juan Mountains are beautiful!](/assets/images/san-juan-mountains.jpg "San Juan Mountains")

圣胡安山很美丽!

这里它与 markdown 一起工作,将鼠标悬停在缺失的图像上会显示图像标题,并且由于图像不可用,它会显示替代文本。

我在 overleaf 中尝试了类似的方法:

href{https://duckduckgo.com "The best search engine for privacy"}{Duck Duck Go}

但编译后它给了我一个添加了文本的链接:https://duckduckgo.com%20%22the%20best%20search%20engine%20for%20privacy%22/

对于我尝试过的图像:

Nice picture of the polar light, in png.
\begin{figure}[!ht]\centering\captionsetup{justification=centering}\includegraphics[width=0.5\textwidth]{img/Polarlight.png}\caption{Aurora Borealis}\end{figure}

在 overleaf 中我得到了:

极光的美丽图片,以 png 格式呈现。

对齐=居中[宽度=0.5]img/Polarlight.png

图 1.1:北极光

所以这里的文字和标题是可以的,但是当没有图像时,我想省略 justification=centering[width=0.5]img/Polarlight.png 部分

我怎样才能在乳胶中实现这样的事情?

相关内容