如何在文档中切换 Roboto 字体变体?

如何在文档中切换 Roboto 字体变体?

我想使用Roboto 字体在我的某个文档中。我可以像这样加载它:

\usepackage[sfdefault]{roboto}

该字体支持以下变体:regular, bold, medium, black, light, thin可以通过在包选项中指定它们来激活,例如:

\usepackage[sfdefault, thin]{roboto}

但是我怎样才能在文档中切换变体?大多数时候我需要light(所以我用选项加载包light),但有时我需要thin。我怎样才能在文档中切换它们?

答案1

这里有一种方法:

\documentclass{article}
\usepackage[sfdefault]{roboto}

\begin{document}

This is the Light version

\begingroup
\fontseries{t}\selectfont

This is the Thin version

\endgroup

This is the Light version again

\end{document}

在此处输入图片描述

相关内容