Hyperref 与链接文本的字距不太一致

Hyperref 与链接文本的字距不太一致

hyperref当将字距调整应用到要链接的文本时,有没有办法移动这些框?

在此处输入图片描述

似乎确实有尝试跟上字距,但似乎偏离了很大一步?

代码:

\documentclass{article}
\usepackage[colorlinks=false]{hyperref} 

\begin{document}

\par\hspace*{2.0cm}\href{https://tex.stackexchange.com}{TeX.SE}
\par\hspace*{2.0cm}\href{https://tex.stackexchange.com}{$\!$TeX.SE}
\par\hspace*{2.0cm}\href{https://tex.stackexchange.com}{$\!\!$TeX.SE}
\par\hspace*{2.0cm}\href{https://tex.stackexchange.com}{$\!\!$TeX.SE}
\end{document}

答案1

比较:

\documentclass{article}
\usepackage[colorlinks=false]{hyperref} 

\begin{document}

\par\hspace*{2.0cm}\href{https://tex.stackexchange.com}{TeX.SE}
\par\hspace*{2.0cm}\href{https://tex.stackexchange.com}{$\!$TeX.SE}
\par\hspace*{2.0cm}\href{https://tex.stackexchange.com}{$\!\!$TeX.SE}
\par\hspace*{2.0cm}\href{https://tex.stackexchange.com}{$\!\!$TeX.SE}



\par\hspace*{2.0cm}\frame{TeX.SE}
\par\hspace*{2.0cm}\frame{$\!$TeX.SE}
\par\hspace*{2.0cm}\frame{$\!\!$TeX.SE}
\par\hspace*{2.0cm}\frame{$\!\!$TeX.SE}



\end{document}

在此处输入图片描述

hyperef 根本看不到负空间,就像\frame(的更紧密版本\fbox)一样,如果添加负空间,文本的有效宽度就会减小。

相关内容