使用 Roboto 等宽字体作为 \url

使用 Roboto 等宽字体作为 \url

我正在使用机器人字体用于章节标题;我也想将它用于ttfamily某些情况,例如\url,特别是因为它比默认字体更简洁。看看字体目录,有一个等宽版本。但是我如何“启用”它?

\documentclass[a4paper,10pt]{article}
\usepackage[pdftex,hidelinks]{hyperref}

\usepackage[lf]{venturis}
\usepackage[condensed]{roboto}
\usepackage[T1]{fontenc}

\begin{document}

Foo: \url{https://tex.stackexchange.com/questions}

\end{document}

无论我是否包含该roboto包,URL 总是以相对较宽的等宽字体呈现,而 AFAICS 不是 Roboto:

在此处输入图片描述 在此处输入图片描述

我想我需要类似的东西

\renewcommand*{\ttdefault}{roboto}

只是字体名称无效。我猜是缩写,但是怎么缩写呢?

答案1

它在包自述文件中:有第二个包roboto-mono。例如

\usepackage[light,scaled=0.85]{roboto-mono}

但它并没有占用太多的水平空间。 在此处输入图片描述

相关内容