[Tex/LaTex] Plain text in italics

italic

I am writing a lemma in math which is the following using the italics parameter \textit but need to insert plain text that isn't italicized in the lemma. I can't just delete the \textit around my math lemma or else the lemma won't be in italics.

Best Answer

You could just stop the command, then restart it.

\documentclass[11pt]{article}
\begin{document}

\textit{Here is some itallic text,} some regular text, \textit{and more itallic text.}  

\end{document}

Would produce

enter image description here

Related Question