Hi there,
I want to change part of the text into textit and Computer Modern font.
I now use
\textit{
BLA BLA BLA \\
BLA BLA BLA \\
BLA BLA BLA
}
How do I make these chararcters Computer Modern font as well?
Globally, I am using \usepackage{cmbright}
Thanks.
Fonts & Character Sets ⇒ Computer Modern font
Computer Modern font
Do you just want certain characters in Computer Modern italics, while the main text is with CMBright, or do you want to change the \textit command so that it always produces that effect?
If the former, then this should work:
Consider using lmr rather than cmr to get Latin Modern rather than Computer Modern.
If the former, then this should work:
Code: Select all
\documentclass{article}
\usepackage{cmbright}
\begin{document}
Normal text.
{\fontfamily{cmr}\fontshape{it}\selectfont
Blah blah blah \\
blah blah blah \\
blah blah blah}
\end{document}