0

I want to make the expression inside this a text

\frac{   fa_das_tat_C    }{1+0.2 }

that will not be changed in any way.

Revist
  • 35

1 Answers1

2

I believe that what you want is to transform the numerator into a text style (no italic and no subscript). This should do the trick:

\documentclass{article}

\begin{document}

\begin{equation}
\frac{\mathrm{fa\_das\_tat\_C}}{1+0.2 }
\end{equation}

\end{document}
midobal
  • 68