[Tex/LaTex] How to use Roboto Condensed font

fonts

It's a very nice font and available from Google Font. Is it a way I can use it? Many tanks!

Best Answer

  1. Download the font: http://www.fontsquirrel.com/fonts/roboto

  2. Install it into your system.

  3. Typeset the following using xelatex or lualatex:


\documentclass{article}
\usepackage{fontspec}
\setsansfont{Roboto Condensed}
\begin{document}
\textsf{Domo arigato, Mr. Roboto.}
\end{document}