How can I activate the demo option for the graphicx package when using memoir? Is there an equivalent option in memoir?
When I try:
\usepackage[demo]{graphicx}
I get:
! LaTeX Error: Option clash for package graphicx
Update (solved)
Memoir does not load graphicx, so the solution is to add \usepackage[demo]{graphicx} before any other package loads graphicx, as @egreg pointed out in the comments.
memoirclass doesn't load thegraphicxpackage, so\usepackage[demo]{graphicx}should work. It might not work if some other package loadsgraphicx; without seeing the preamble you're using it's impossible to say more. – egreg Apr 22 '12 at 15:28