I'm using the MLA package to write my essays, however the package is a little dated so it uses the thumbpdf package. This doesn't do any harm to my essay, but it does produce annoying warning messages. Is there anyway to use the MLA package, but not thumbpdf?
Asked
Active
Viewed 293 times
1 Answers
6
You can use \PreventPackageFromLoading{thumbpdf} from package scrlfile before \usepackage{mla}.
\documentclass{article}
\usepackage{scrlfile}
\PreventPackageFromLoading{thumbpdf}
\usepackage{ifpdf}
\usepackage{mla}
\begin{document}
test
\end{document}
esdd
- 85,675
-
This works, wish the mla package got updated. Thanks! – user102786 Apr 10 '16 at 03:59