Is it possible to change the options a package was invoked with after the fact? That is, could one define \OopsIWishIHadWrittenDraftWhenIncludingGraphicx so that
\documentclass{article}
\usepackage[final]{graphicx}
\OopsIWishIHadWrittenDraftWhenIncludingGraphicx
\begin{document}
...
\end{document}
would produce the same result as
\documentclass{article}
\usepackage[draft]{graphicx}
\begin{document}
...
\end{document}
?
\usepackagea second time with different parameters? – sfat Nov 01 '13 at 12:56\makeatletter\Gin@drafttrue\makeatother. But not every option is so simple. – Ulrike Fischer Nov 01 '13 at 12:58\usepackage[...]{...}. – jub0bs Nov 01 '13 at 13:57