4

I want to write a symbol like the one shown in the following image

enter image description here

but I can't make it work. I tried:

$$ \underbar{\nabla} $$

but it didn't work (I think the reason for this is that the input for the underbar command should be only text.

How can I make this work ?

Heath
  • 207

2 Answers2

15
\documentclass{article}

\begin{document}

$\underline{\nabla}$
\end{document}
David Carlisle
  • 757,742
5
\documentclass{article}
\usepackage{amsmath}

\begin{document}

$\underbar{\hbox{$\nabla$}}$
\end{document}

or, alternately,

\documentclass{article}
\usepackage{amsmath}

\begin{document}

$\setbox0=\hbox{$\nabla$}\underbar{\box0}$
\end{document}

enter image description here