I'm trying to use the Roboto font in a beamer presentation, built with pdftex. I installed the roboto package, but when trying to build, I get the following error:
Trying to make PK font Roboto-Light-lf-t1--base at 657 DPI...
Running miktex-makemf.exe...
miktex-makemf: The Roboto-Light-lf-t1--base source file could not be found.Running ttf2pk.exe...
miktex-makepk: PK font Roboto-Light-lf-t1--base could not be created.
)
!pdfTeX error: pdflatex.EXE (file Roboto-Light-lf-t1--base): Font Roboto-Light- lf-t1--base at 657 not found
I tried running updmap.exe in a console, both as user and admin, but it didn't resolve the problem. An MWE is included below.
\documentclass{beamer}
\usepackage[T1]{fontenc}
\usepackage[sfdefault,light]{roboto}
\title{Title}
\author{Me}
\begin{document}
\maketitle
\begin{frame}
\frametitle{First slide}
\begin{itemize}
\item Item
\item Item
\end{itemize}
\end{frame}
\end{document}
Update: I just tried updating my packages and saw that the roboto package is obsolete. Could this have something to do with the error? Does this mean I can't use the font?