When using the sansmath package with the Arev font, symbols like + and = fail to appear in the compiled document.
\documentclass{article}
\usepackage{fouriernc} % use the Arev font
\usepackage{sansmath}
\begin{document}
You can see this $+$ and this $=$.
But you can't see \sansmath this $+$ and this $=$.
\end{document}
If, however, I switch the order of \usepackage to include sansmath first and then fouriernc, for some reason you now can see the symbols, but I get two errors...
\documentclass{article}
\usepackage{sansmath}
\usepackage{fouriernc} % use the Arev font
\begin{document}
You can see this $+$ and this $=$.
Now you can see \sansmath this $+$ and this $=$, but there are 2 errors.
\end{document}
! LaTeX Error: Command `\mathrm' already defined.
! LaTeX Error: Command `\mathrm' already defined.