[Tex/LaTex] How to set not italic or not bold

fonts

It is well known that you can make the font italic or bold using \textit{} or \textbf{}. However, if I have an italic or bold font, what command can I use to make it nonitalic or nonbold?

Best Answer

You can use \normalfont

\documentclass{book}
\begin{document}
 \textit{Some italic and {\normalfont non italic} text}

 \textbf{Some bold and {\normalfont non bold} text}

 \emph{Some italic and {\normalfont non italic} text}
\end{document}

enter image description here