I have encountered what appears to be a bug in the amsmath package related to nested tildes and/or breves. I would be grateful for suggestions on where to report this and/or on workarounds. I already sent an email to a tech support address at AMS, but I was not certain whether that was the right thing to do. This is my first attempt at reporting a bug.
An minimum working example follows. The error is that the j from the first equation is somehow remembered and shows up unexpectedly in the second and third equations. If I comment out the amsmath package, then it works correctly.
Thanks,
Nathan Grube
Code: Select all
\documentclass[11pt]{article}
\usepackage{geometry}
\geometry{letterpaper}
\usepackage[]{amsmath}
\begin{document}
\begin{equation}
\breve{\tilde{j}}
\end{equation}
\begin{equation}
\breve{\breve{{T}} \breve{{v}}}
\end{equation}
\begin{equation}
\tilde{{\tilde{T}} {\tilde{v}}}
\end{equation}
\end{document}