I use \over even though it is a bad practice (yes, yes, I know I shouldn't). Whenever I compile a LaTeX file using it, I get the message:
Foreign command \over; \frac or \genfrac should be used instead.
Is there a way to get LaTeX to ignore this warning, so that it doesn't appear in the output? I'm using the amsmath package, if that's relevant.
\overthat is considered less "evil," I'd be glad to hear about that as well. – jasonhansel Apr 25 '15 at 02:38\documentclass{...}and ending with\end{document}. – Symbol 1 Apr 25 '15 at 02:49\overand repeat its definition without\message-relevant macros. ② pack\overwith\def\message#1{}. – Symbol 1 Apr 25 '15 at 02:59\overbecause I find that, for instance,{ 1 \over 2 }is much more readable than\frac{1}{2}. – jasonhansel Apr 25 '15 at 03:20plainpackage is an old package meant for resurrecting some Plain TeX macros that were not available in LaTeX or had been disabled by LaTeX2e. Mainly for easing porting code from Plain TeX to LaTeX, but it should be avoided. And also using\overis not recommended in LaTeX, which is whyamsmathwarns you. – egreg Apr 25 '15 at 09:23plainenvironment? It was more or less a joke package anyway and if intended for use at all, intended for typesetting small fragments of plain text markup within a latex file. apart from anything else it redefines\itemto match plain's definition so would make all latex lists unusable. – David Carlisle Apr 25 '15 at 09:57