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