All my jpg images in LaTeX are coming out in black and white. Similar question here, but it doesn't seem to answer my question. I am using Texmaker and latex + dvips + sp2pdf + ViewPDF
Here is an example of my code:
\documentclass[12pt,oneside,openany,a4paper,%..... Layout
afrikaans, english,%.............. Global language selection
]{memoir}
\usepackage{babel}%.............................. Language setup
\usepackage{graphicx}%........................... Graphicx loaded in usthesis
\begin{document}
\begin{figure}[!htb]
\centering
\includegraphics[width=0.8\textwidth,natwidth=831,natheight=812]{FourHeliostatsTry3.jpg}
\caption{Intersection and transformation of four heliostats}
\label{Ffourheliostats}
\end{figure}
\end{document}
\documentclass{...}and ending with\end{document}. – ChrisS Jul 26 '13 at 11:29latex -> dvips -> ps2pdfinstead of just compiling withpdflatex? – Jake Jul 26 '13 at 11:37afrikaansoption, the problem persists? Also, what happens if you callpdflatex <document>from a console instead of through your editor? – Jake Jul 26 '13 at 12:40.logfile that's produced when you compile the document usingpdflatex? – Jake Jul 26 '13 at 13:05pdflatexwith the MWE and a JPG of my own [https://www.facebook.com/photo.php?fbid=10200702207178160&l=248b7fce92] FWIW, I get colour as expected. If I dolatex -> dvipsthe ps is greyscale. If I dolatex ->dvipdfmthe pdf is in colour - so I suggest avoiding dvi2ps unless you really want ps – Chris H Jul 26 '13 at 13:18dvips, it's very likely that you need to usedvips -I c <filename>instead of justdvips <filename>(see http://www.win.tue.nl/latex/faq.html#q16). That wouldn't explain why it happens withpdflatex, though. – Jake Jul 26 '13 at 15:35