使用非打字机字体排版 URL

使用非打字机字体排版 URL

我使用\usepackage{url}\url{…}排版 URL,但打字机字体太显眼了。如何才能使用其他字体排版 URL?

答案1

根据自述

您可以使用 切换打印样式\urlstyle{tt},其中tt可以是任何已定义的样式。预定义样式为ttrmsfsame,它们均会产生相同的换行符,但使用不同的字体 — 前三个选择特定字体,而“相同”样式使用当前文本字体。

您还可以定义自己的字体:

\makeatletter
\def\url@foostyle{%
  \@ifundefined{selectfont}{\def\UrlFont{\sf}}{\def\UrlFont{\small\ttfamily}}}
\makeatother

%% Now actually use the newly defined style.
\urlstyle{foo}

(最后一个例子来自http://www.kronto.org/thesis/tips/url-formatting.html

相关内容