[Tex/LaTex] How to get this symbol (looks like a T or J)

symbols

I've tried drawing this symbol in Detexify, but with no luck:

T pic

It's not \mathcal{TJ}: $\mathcal{TJ}$ or \mathscr{TJ}: $\mathscr{TJ}$.

I'm guessing it's a T from context in the textbook. It has the same height as a capital letter.

How do I produce this symbol in mathjax (where I'm writing my textbook notes) and $\LaTeX$?

Best Answer

The symbol is a scipt uppercase T in math mode. The package euscript should fit your needs. Try

\documentclass[12pt]{article}
\usepackage{amsmath}
\usepackage[mathcal]{euscript}
\begin{document}
\begin{equation*}
\mathcal{T}
\end{equation*}
\end{document} 

to obtain

enter image description here