LuaLaTeX:字体形状未定义,使用其他字体代替

我正在使用LuaLaTeX编写我的简历。一切功能正常,代码编译也正常。 然而,我得到了两个与我的问题有关的警告:

LaTeX Font Warning: 一些字体形状不可用,默认替换。
LaTeX Font Warning: 字体形状`TU/RobotoLight(0)/m/it' 未定义

显然,我的问题是,每当我使用

\textit{RandomText}

文本就会以正常字体打印。我确实安装了Roboto Light Italic。 有没有人可以告诉我路径'TU/RobotoLight(0)/m/it'通往何处?

非常感谢。

\documentclass[a4paper,10pt]{article}
\usepackage[english]{babel}
\usepackage{fontspec}       % for fonts
\defaultfontfeatures{Ligatures=TeX}
\newfontfamily{\cvnamefont}{Roboto Medium}
\newfontfamily{\cvsectionfont}{Roboto Medium}
\newfontfamily{\cvtitlefont}{Roboto Regular}
\newfontfamily{\cvdurationfont}{Roboto Light Italic}
\newfontfamily{\cvheadingfont}{Roboto Regular}
\setmainfont{Roboto Light}

\begin{document}
\textit{Hello, World!}
\end{document}
点赞