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.
NEW: TikZ book now 40% off at Amazon.com for a short time.
And: Currently, Packt sells ebooks for $4.99 each if you buy 5 of their over 1000 ebooks. If you choose only a single one, $9.99. How about combining 3 LaTeX books with Python, gnuplot, mathplotlib, Matlab, ChatGPT or other AI books? Epub and PDF. Bundle (3 books, add more for higher discount): https://packt.link/MDH5p
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}