[Tex/LaTex] Why does TeX not like \usepackage

macrosplain-tex

My prof writes papers with harvmac, which is apparently incompatible with LaTeX. Fine, I switch to tex. Now TeX gives me Undefined control sequence when I type \usepackage{amsmath}.

There's gotta be some equivalent to \usepackage (I've tried \usepackage{amsmath.sty} but it doesn't work).

Or maybe I'm completely hosed because amsmath/harvmac are fundamentally incompatible?

Best Answer

The \usepackage macro is part of LaTeX, not part of plain TeX, and this is why you get an undefined control sequence error here. You will need to \input the appropriate files

\input amstex %
\input harvmac %
Some text here
$$ y = mx + c $$
\bye