Graphics, Figures & Tables ⇒ Grayscale output with latex (via GS)
Grayscale output with latex (via GS)
I presume this is for decreased size and for those who do not own a color printer.
Anyways, I have 2 questions regarding this:
-is there a way to make grayscale pfs with pdf2latex (what command if there is)
-Im using the latex- ps- pdf route via ghostscript and added commands for grayscale output, however this is as fast as a snale in hibernation. Is there a way to speed it up? I used this:
Arguments for the ghostscript postprocessing in the profile I made:
-sPAPERSIZE=a4 -sColorConversionStrategy=Gray -dProcessColorModel=/DeviceGray -dSAFER -dBATCH -dNOPAUSE -sDEVICE=pdfwrite -sOutputFile="%bm.pdf" -c save pop -f "%bm.ps"
it looks nice and grey though but took like 5 mins to build.
Learn LaTeX easily with newest books:
The LaTeX Beginner's Guide: 2nd edition and perfect for students writing a thesis
The LaTeX Cookbook: 2nd edition full of practical examples for mathematics, physics, chemistry, and more
LaTeX Graphics with TikZ: the first book about TikZ for perfect drawings in your LaTeX thesis
Grayscale output with latex (via GS)
Code: Select all
\documentclass{article}
\usepackage{xcolor}
\selectcolormodel{gray}
\begin{document}
\textcolor{blue}{\rule{5cm}{2cm}}
\textcolor{yellow}{\rule{5cm}{2cm}}
\end{document}