如何仅将链接字体更改为斜体?

如何仅将链接字体更改为斜体?

我希望将 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}}

相关内容