0

What is the command to insert the following cross-like operator in a latex document?

enter image description here

Thank you for your help.

Circumscribe
  • 10,856

3 Answers3

3

Just for the heck of it, I built it myself (without amssymb)...works across math styles.

\documentclass{article}
\usepackage{stackengine,graphicx,scalerel}
\newcommand\altltimes{\mathbin{\stretchrel*{%
  |\kern-1.6pt\kern-.5\LMpt\stackengine{0pt}{$\SavedStyle/$}{%
    \reflectbox{$\SavedStyle/$}}{O}{c}{F}{F}{L}}{x}}}
\begin{document}
$a\altltimes b + c$

$\scriptstyle a\altltimes b + c$

$\scriptscriptstyle a\altltimes b + c$
\end{document}

enter image description here

If you prefer a taller symbol, to match the height of a times sign, change the {x} to \times:

\documentclass{article}
\usepackage{stackengine,graphicx,scalerel}
\newcommand\altltimes{\mathbin{\stretchrel*{%
  |\kern-1.6pt\kern-.45\LMpt\stackengine{0pt}{$\SavedStyle/$}{%
    \reflectbox{$\SavedStyle/$}}{O}{c}{F}{F}{L}}{\times}}}
\begin{document}
$a\altltimes b + c$

$\scriptstyle a\altltimes b + c$

$\scriptscriptstyle a\altltimes b + c$
\end{document}

enter image description here

2

What you are searching for is the following:

\documentclass{article}

\usepackage{ amssymb }

\begin{document}

$\ltimes$

\begin{equation}
    \ltimes
\end{equation}

\end{document}

which produces

.pdf Output

Also, for future reference, try using Detexify. Hope I could help :-). Have good holidays.

1

If you use unicode-math then:

\documentclass[12pt]{article}
\usepackage{unicode-math}
\begin{document}
$\ltimes$
\end{document}