[Tex/LaTex] How to get a tensor symbol like this

symbolstensor

enter image description here

As you can see, it looks like the superposition of two \rightharpoonup.
I don't know how to make it.

Best Answer

Not very beautiful, as the kerning looks different for different symbols (the double harpoon gets shorter or longer for other symbols below). But if you just need it ones, it doesn't matter. Or you define it for each symbol with different magnitude of kerning. enter image description here

% arara: lualatex

\documentclass{article}
\usepackage{mathtools}
\usepackage{unicode-math}
\setmathfont{xits-math.otf} % optional to get something close to your "T"   
\newcommand{\doubleTensor}[1]{\mathrlap{\mkern-1.5mu\rightharpoonaccent{\phantom{#1}}}\rightharpoonaccent{#1}}

\begin{document}
\[\doubleTensor{\mscrT}\]
\end{document}
Related Question