[Tex/LaTex] In graphics/graphicx, how to show actual pictures despite draft mode

draftgraphicstrackchanges

For collaboration purposes I am using the draft mode in my LaTeX manuscript to show todo-notes, remarks and so on. By switching to final mode all of these additions become unvisible.

However, I'd love to switch on the final mode of the graphics/x package to see the actual pictures but \documentclass being still in draft mode. I get an error about clashing options
when I add

\usepackage[final]{graphicx}

My first guess was that the \documentclass already sets the option for the graphics/x package. Following doesn't help either

\PassOptionsToPackage{final}{graphicx}
\documentclass[twoside,onecolumn,draft]{rsauthor}

Best Answer

\RequirePackage[final]{graphicx}
\documentclass[twoside,onecolumn,draft]{rsauthor}

probably works

Also (without doing that) you can flip the draft flag in the preamble (after \usepackage{graphicx}) as

\setkeys{Gin}{draft=false}
Related Question