Trouble with displaying figures in LaTeX

  • Context: LaTeX 
  • Thread starter Thread starter JoAuSc
  • Start date Start date
  • Tags Tags
    Latex
Join the discussion
Registration is free. Ask a follow-up in this thread, or start your own.
6 replies · 18K views
JoAuSc
Messages
197
Reaction score
1
I'm using TeXnic center and I'm trying to figure out how to display figures in LaTex, but all I'm getting is a blank space. (No errors, though. Also, I haven't had problems with ordinary LaTeX stuff.)

Code:
\documentclass{article}

\usepackage{amsfonts}
\usepackage{amsmath}
\usepackage{amssymb}
\usepackage[dvips]{graphicx}

\begin{document}

%random text
fgf

\begin{figure}
	\centering
		\includegraphics{D:/chick.ps}
	\label{fig:chick}
\end{figure}

\end{document}
I originally tried this with an .eps file I generated from a MATLAB plot, and got a blank space, so I tried "chick.ps" which is an image file of a yellow chick I found on some help page, but still no result. Does anyone know why my image isn't displaying?
 
Physics news on Phys.org
You can also use images saved in PDF format. Like the others have said, make sure that you save the file in the same folder as your tex document.

If you're using the protext package that comes with Miktex then there are several pdf latex guides in the protext/doc folder.
 
Last edited:
I don't think the path is the problem here. Thanks for the info on not using .ps. I'll look into the pdf latex guides (yes, I am using a protext package).

I haven't completely solved the problem, but I can say that it works when I output a DVI file, but I get a blank space when I output to PDF (which is what I was doing before) or to PS.
 
IIRC, there is a difference between producing pdf files:
pdflatex vs latex+dvipdf vs latex+dvips+(gs conversion to pdf)
and what kind of images can be used into the graphics statement.
I exclusively use latex+dvips+(gs conversion to pdf).
 
That's true actually; I don't think pdflatex can cope with .eps files in the argument for graphicx. You may have to convert this into a .pdf file, or .jpg (or many other types, I imagine).