I am using metropolis theme in beamer but I want to italicize particular words in the title.
What I have below doesn't produce the right result. {\protect\textit{special italicized words}} doesn't make a difference. Edit: ideally, I would want the italicized text to remind boldface.
\documentclass[10pt]{beamer}
\setbeamercovered{highly dynamic}
\usetheme[progressbar=frametitle]{metropolis}
\usepackage{appendixnumberbeamer}
\setbeamercolor{alerted text}{bg=red}
\newcommand{\themename}{\textbf{\textsc{metropolis}}\xspace}
\usepackage{pifont}
\title{Title \emph{special italicized words}}
\date{}
\author{Author Author}
\institute{Institute}
\begin{document}
\maketitle
\end{document}


\textbfwon't work here. – bozidarka Apr 22 '21 at 18:59\title{Title \itshape special italicized words}instead of\title{Title \textnormal{\fakebold{\emph{special italicized words}}}}. – Mico Nov 17 '21 at 05:27\itshapedoes not work for bold in this font, there fakebold is a solution. Using T1 you can indeed use\itshapeor\textitas I used in the author line below. – Marijn Nov 17 '21 at 09:03