[Tex/LaTex] How to type the “EE” character

symbols

I'm looking to type the "EE" character, the one that means "* 10^{x}" — I'm trying to represent what might be typed on a Ti-84 calculator….

Best Answer

I’ve never seen it written as “EE” but how about something like this?

\newcommand*\EE[1]{\ensuremath{\text{\textsc{e}}#1}}

Then you can write something like the following:

One googol is $1\EE{100}$

(Requires amsmath.)

Related Question