Why aren't my overbraces displaying correctly?
The code for this segment is as follows
\documentclass[12pt]{amsart}
\usepackage{amsfonts}
\usepackage{verbatim}
\usepackage{amsbsy}
\usepackage{amsmath}
\usepackage{amssymb}
\usepackage{latexsym}
\usepackage{mathabx}
\usepackage{setspace}
\usepackage{mathtools}
\usepackage{xcolor}
\usepackage{pifont}
\begin{document}
...
\begin{align*}
g^{(e)}(x) &= \overbrace{(1 + \frac{x^2}{2!} + \frac{x^4}{4!} + \ldots)}^{\text{red}}\overbrace{(1 + \frac{x}{1} + \frac{x^2}{2!} + \ldots)}^{\text{green}}\overbrace{(1 + \frac{x}{1} + \frac{x^2}{2!} + \ldots)}^{\text{white}}\\
...
\end{align*}
...
\end{document}
And it gets typeset like in the image below.

I'm honestly not sure what packages are required to build this bit of code (there's a lot more stuff in the document, as you might imagine) so I left all of them in there—maybe there's a conflict between them?

amsart,amsmathandamsfontsare already loaded. – barbara beeton Mar 01 '18 at 14:14