如何使 XeLaTeX 中的超链接框与 pdfLaTeX 中的一样大

如何使 XeLaTeX 中的超链接框与 pdfLaTeX 中的一样大

在使用 排版以下示例时,使用、、、等xelatex生成的各种可点击链接框又小又丑,有时难以阅读其中的数字或文本。我们如何才能使链接框变得更大,就像在 中运行相同的代码时一样?\ref\cite\footnote\hrefpdflatex

% hyperref-xelatex.tex

\documentclass{article}
\usepackage{hyperref}

\begin{document}

\section{First section}
\label{one}

Link to section \ref{one}

This text has a footnote.\footnote{Some explanation here}

We are quoting from a book \cite{book}.

Now we want to \href{www.example.com}{link somewhere} or like this \url{www.example.com}.

\begin{thebibliography}{99}
\bibitem{book}
This book needs no title

\end{thebibliography}

\end{document}

答案1

驱动xdvipdfmx程序有一个-g选项可以控制添加到这些链接和其他注释的填充,您可以使用以下方式从 xetex 传递该选项

xelatex --output-driver='xdvipdfmx -g 1pt '

添加额外的 1pt 空间。

该图显示了使用上述选项用 pdflatex、xelatex 或 xelatex 设置的测试文件的未更改副本。

在此处输入图片描述

相关内容