when using \dot in a nested manner, the letter in the middle is not centered anymore. Why does it happen?
\documentclass{article}
\usepackage{amsmath}
\begin{document}
$\dot{(\dot{s} )}$
\end{document}
Is there any solution to this appart from not using amsmath?
EDIT: Thank you for the answers, I used this which helps also to keep the formula still readable if it gets more complex:
\documentclass{article}
\newsavebox{\dotbox}
\usepackage{amsmath}
\newcommand{\outerdot}[1]{\sbox\dotbox{$#1$}\dot{\usebox\dotbox}}
\begin{document}
$\outerdot{\left(\dot{s} \right )}$
\end{document}




(\dot{\dot{s}})? – Skillmon Apr 04 '20 at 20:03