我希望将 LaTeX 中的链接字体更改为斜体。
\hypersetup{%
linkcolor=black,
font=italics,
unicode%
}
答案1
可以修改 的定义以colorlink
将字体更改为斜体,类似于现有frenchlinks
选项(将字体更改为小写字母)。请注意,应在 之后提供定义\begin{document}
,否则hyperref
可能会用默认值覆盖修改。
梅威瑟:
\documentclass{article}
\usepackage[colorlinks]{hyperref}
\begin{document}
\makeatletter
\def\Hy@colorlink#1{\begingroup\fontshape{it}\selectfont}%
\makeatother
See \autoref{sec:first}.
\section{First section}
\label{sec:first}
\end{document}
结果:
答案2
如果只使用一两次,
\textit{\url{www.url.com}}
或者
\textit{\href{https://url.com}{URL}}