Consider the following piece of code:
\documentclass{article}
\usepackage{mathabx}
\begin{document}
$\widehat{f_{\overline{K}}}$
$\widehat{f_{\bar{K}}}$
\end{document}
This outputs the following image:
On the other hand, if I use:
\documentclass{amsart}
\usepackage{mathabx}
\begin{document}
$\widehat{f_{\overline{K}}}$
$\widehat{f_{\bar{K}}}$
\end{document}
This outputs the following image:
I was wondering what accounts for the strange looking widehat of f_{\bar{K}} when using amsart+mathabx? Why is the use of overline not affected? These issues do not occur if one is not using the mathabx package, regardless of whether one is using the article or amsart document class.


