\href{https://google.com}{\includegraphics[scale=0.05]{logo.png}} - 不起作用
\href{https://google.com}{\includegraphics[scale=0.05]{logo.png}someTextHere} - 工作
如何让它只对图像起作用
答案1
使用 pdflatex/lualatex 应该可以工作。使用 xelatex 你需要 \XeTeXLinkBox:
\documentclass{article}
\usepackage{hyperref}
\usepackage{graphicx}
%
\begin{document}
\href{https://google.com}{\XeTeXLinkBox{\includegraphics[scale=0.05]{example-image.png}}}
\href{https://google.com}{\includegraphics[scale=0.05]{example-image.png}xxx}
\end{document}