[Tex/LaTex] How to typeset this letter in LaTeX

symbols

I want to find the LaTeX symbol for the character shown in the attached image.

Enter image description here

I have tried \mathcal{J}, \jmath, \textctj, \mathscr{J}, and \mathfrak{J}, but none of them worked.

Best Answer

You need to access the "Euler" "math-script" symbols. One way to do so is to load the mathalfa package -- the spelling "mathalpha" is also valid -- with the option scr=euler.

enter image description here

enter image description here

Among font afficionados, Euler script letters (created by the late Hermann Zapf) are known for being almost perfectly upright. This in stark contrast to most other math-script letters, which tend to be moderately or even heavily sloped.

\documentclass{article}
\usepackage[scr=euler]{mathalfa}
\begin{document}
$\mathscr{J}$

$\mathscr{ABCDEFGHIJKLM}$

$\mathscr{NOPQRSTUVWXYZ}$
\end{document}