[Tex/LaTex] How to you insert a “times/divide” symbol similar to the “plus/minus” (±) one

symbols

Is there a LaTeX symbol for it?

A non-educated guess is that it may look like the figure below.

geometric mean and geometric standard deviation operator

Best Answer

Something like this?

enter image description here

\documentclass{article}
\newcommand\timesdiv{\mathbin{\vcenter{\hbox{%
   $\begin{array}{@{}c@{}}\times\\[-1.667ex]\div\end{array}$}}}}

\begin{document}
$d\timesdiv b$ 

$d\pm b$
\end{document}
Related Question