[Tex/LaTex] Partial derivative with rightleftarrow on top of it

symbols

How can I write a partial derivative with an arrow on top of it (pointing to the left and right)? For instance:

enter image description here

I've tried to Google it, but couldn't find anything (probably because I'm not sure what keywords to use). Any help is much appreciated.

Best Answer

One option using \overset:

\documentclass{article}
\usepackage{amsmath}
\usepackage{amssymb}

\begin{document}

\[
\partial_0\quad \overset{\leftrightarrow}{\partial_0}
\]

\end{document}

enter image description here