I need to write a formula with a \widecheck over two \hat.
The equation is the following:
\documentclass[a4paper,11pt]{article}
\usepackage{amsmath}
\usepackage{amsfonts,amssymb,mathabx}
\begin{document}
\begin{equation}
\tilde{A}^\mu_\Lambda = \widehat{\widehat{G}\cdot\widehat{j^\mu_\Lambda}}.
\end{equation}
\end{document}
If I write this code I obtain a lot of errors (undefined control sequence, missing number treated as zero, illegal unit of measure (pt inserted), etc...).
If I use \widehat instead of \widecheck, the result is the same.
I have problems also writing
\widecheck{\hat{G} \cdot j}
because the result is not correct (G is translated to the right and overwrites j).
How can I write the \widecheck?
amsmathis used?; the solutions shown there seem to apply to your case as well. – egreg May 16 '14 at 19:32Thank you, egreg
– user51852 May 16 '14 at 19:59