I need to write the symbol of the earth, which is found in the package mathabx. When I compile my script I get the following error:
! LaTeX Error: Command \iint already defined.
Or name \end... illegal, see p.192 of the manual.
See the LaTeX manual or LaTeX Companion for explanation.
Type H <return> for immediate help.
...
l.505 ...d{\iint}{\DOTSI\protect\MultiIntegral{2}}.
It looks like a conflict between different packages.
Here is a sample of my latex script, with the packages I am using:
\documentclass[11pt,a4paper]{article}
\usepackage[pdfencoding=auto,psdextra]{hyperref}
\usepackage{mathabx}
\usepackage{amsmath}
\begin{document}
\begin{equation}
U_{\Earth}
\end{equation}
\end{document}
I cannot understand what is wrong.

\Earthsymbol, then add the other packages back in one at a time until you get the error. – darthbith May 13 '14 at 14:01end{equation}needs an\\before it. – darthbith May 13 '14 at 14:02\earthfrom thewasysympackage – May 13 '14 at 14:03amsmathpackage beforemathabx. Works fine. – May 13 '14 at 14:05