For the last ten week me and 9 other students have worked on a report. And the final version of the report needs to be printed in black&white (so no color). The easiest method is use the grey setting of the printer. However, many picture in the report are now unclear. Therefore, I would like to ask you guys the following question: "Is there an option in latex which automatically prints the pdf in black&white?"
This is the following setup I use for latex
\documentclass[a4paper,11pt,oneside]{scrbook}
\usepackage{geometry}
\geometry{a4paper}
\geometry{width=0.7\paperwidth,height=0.8\paperheight}
\usepackage{graphicx}
\usepackage{rotating}
\usepackage{epsfig}
\usepackage{amsmath}
\usepackage{epstopdf}
\usepackage{fullpage}
\usepackage{url}
\usepackage[parfill]{parskip}
\usepackage{float}
\usepackage{pdfpages}
\usepackage{titlesec}
\usepackage{multirow}
\usepackage{eurosym}
\usepackage{gensymb}
\usepackage{appendix}
\usepackage{titlesec}
\usepackage{booktabs}
\bibliographystyle{unsrt}
\usepackage[monochrome]{color} % if I use this I get an error: option clash for package color.
%%%%%%%%%%%
and if I put in behind the documentclass like
\documentclass[a4paper,11pt,monochrome]{scrbook} % it still prints the pdf in color.
I hope one of you guys can help with this.
latexorpdflatex? – Herbert Jun 20 '11 at 20:04monochromeoption simply converts commands like\color{green}to b&w. But it doesn’t (and shouldn’t) affect on external graphics. I think you have to convert the graphics yourself … May you would like to change the title to something like “How to convert external graphics automatically to black&white“ – Tobi Jun 21 '11 at 6:57