Latex、超链接、框大小

Latex、超链接、框大小

如何缩小超链接的蓝色框的尺寸以更好地适应行高?

答案1

hyperlink的高度将是其所在行的高度。您可以将链接放在框内\mbox{}以最小化高度:

在此处输入图片描述

代码:

\documentclass{article}
\usepackage{amsmath}
\usepackage{hyperref}

\newcommand{\GoogleLink}{\href{http://www.google.com}{Google}}

\begin{document}

\GoogleLink \quad
\mbox{\GoogleLink}\quad
$\dfrac{1}{2}$

\end{document}

相关内容