[Tex/LaTex] Physics EMF symbol in LaTeX

greek

How does one create the symbol for EMF (electromotive force) used in physics for a LaTeX document? It is like \varepsilon but uppercased.

Best Answer

Is this close enough?

\documentclass{article}
\usepackage{amsmath}

\begin{document}
    \[\mathcal{E} \varepsilon \]
\end{document}

enter image description here

Related Question