How can I write e^(3j) in LaTeX?
I have tried many syntax, like $e^(3j)$ or $e^*{3j}$
Any help will be very well received.
How can I write e^(3j) in LaTeX?
I have tried many syntax, like $e^(3j)$ or $e^*{3j}$
Any help will be very well received.
Group the exponent in curly braces, and use the ^ sign to make it a superscript. If you really need parentheses, add them inside the braces too.
\documentclass[border=10pt]{standalone}
\begin{document}
$e^{3j}$ or $e^{(3j)}$%a variable e
\quad
$\mathrm{e}^{3j}$% e as a constant
\end{document}
\exp and define it to one's likings, but that's debatable
– Bort
Aug 16 '15 at 10:51
$e^{3j}$or$e^{(3j)}$depending on what you want. – moewe Aug 16 '15 at 10:42