[Tex/LaTex] Redefining “physics” package vector differential operators

math-modephysics

The physics package defines commands such as \grad, \div and \curl so that any subsequent delimiters are automatically resized (see MWE below). However, they also use a bold nabla. I would like to redefine the commands such that the automatic resizing is preserved but using a regular nabla. Is there any way this is possible?

\documentclass{article}
\usepackage{physics}

\begin{document}

\[ \nabla(\frac{a}{b}) \]
\[ \grad(\frac{a}{b}) \]

\end{document}

Best Answer

\documentclass{article}
\usepackage{physics}
\DeclareDocumentCommand\vnabla{}{\nabla}
\begin{document}

\[ \nabla(\frac{a}{b}) \]
\[ \grad(\frac{a}{b}) \]

\end{document}

enter image description here

Related Question