I have distilled the issue I am having down to the following code fragment.
Code: Select all
\documentclass[12pt,leqno]{book}
%\usepackage{amsmath} % LINE A
\title{Dot Vector Test}
\begin{document}
%\begin{subequations}
\begin{equation}
\dot{\left(a\vec{b}c\right)} % LINE B
\end{equation}
%\end{subequations} % LINE C
\end{document}
Removing the comments in front of lines A, B and C properly handles sub-numbering, but then formats incorrectly, with the b dislocated to the far right of the entire \dot fragment, as shown here:
Removing the comments in front of lines B and C indicates subequations is not recognized.
I am new to TeX, and any help on this issue would be appreciated.