超連結的可點擊區域不圍繞圖像。
\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
。結果是一樣的。