超链接没有围绕图形

超链接没有围绕图形

超链接的可点击区域没有包围图像。

\href{https://github.com/}{\includegraphics[height=12pt]{img/github.png}}

生成:

期望的行为:

我可以通过随后写一些文字来实现类似的效果......

\href{https://github.com/}{\includegraphics[height=12pt]{img/github.png} github}


编辑:看起来是 的问题xelatex。无法在 上重现pdflatex。版本信息:

XeTeX  3.14159265-2.6-0.99998 (TeX Live 2017/Arch Linux)
pdfTeX 3.14159265-2.6-1.40.18 (TeX Live 2017/Arch Linux)

Package: graphicx 2017/06/01 v1.1a Enhanced LaTeX Graphics (DPC,SPQR)
Package: hyperref 2017/03/14 v6.85a Hypertext links for LaTeX

答案1

请始终提供完整的小文档,以说明您的问题!

\includegraphics[height=12]{example-image-a}您在(观察图像高度缺少单位)中遇到错误。为此您应该收到警告:非法计量单位....正确的代码是:

\documentclass{article}
\usepackage{graphicx}
\usepackage{hyperref}

\begin{document}
\href{https://github.com/}{\includegraphics[height=12pt]{example-image-a}}
\end{document}

这使:

在此处输入图片描述

pdflatex用 和进行了测试xelatex。结果相同。

相关内容