I'm writing a scientific text and need to use β as a character. However when I use \beta it changes the formatting of the rest of the paragraph to italics and removes spaces. Is there a way to stop this from happening?
Asked
Active
Viewed 38 times
0
\betaand ignoring errors use$\beta$. Mathematical characters want to be typeset in math mode, and$switches back and forth between text and math mode (but$$does something else and should not be used in LaTeX documents). – Jan 04 '20 at 20:28\betaas a math mode variable but as a normal character in text, then you should use\usepackage{textgreek}and then\textbeta(or another approach to get Greek letters as characters). – Skillmon Jan 04 '20 at 20:35