[Tex/LaTex] making new symbol from two symbols

symbols

I would like to make a new math symbol from overlapping two symbols, such as $\nabla\kern-7.5pt\nabla$. The problem is that the symbol spacing is altered depending on the line, often to the point where the overlap is not recognisable. From looking at other replies I understand that fixing this is likely to do with adding box commands, but there are so many of these that I am not sure where to start! Any help appreciated (I am obviously not an expert …)

Best Answer

I would use \mkern instead of \kern, because it uses unit mu, which follows the math style:

\documentclass{article}
\newcommand*{\doublenabla}{%
  {\nabla\mkern-12mu\nabla}% subformula acts as \mathord
}
\begin{document}
\[ \doublenabla_{\doublenabla_{\doublenabla}} \]
\end{document}

Result

Adjust the shift value to your needs.