LaTeX Trouble with displaying figures in LaTeX

  • Thread starter Thread starter JoAuSc
  • Start date Start date
  • Tags Tags
    Latex
Click For Summary
The discussion centers on issues related to displaying figures in LaTeX using TeXnic Center. The user is experiencing a blank space instead of the intended image, despite no error messages. Key points include the recommendation to place the graphics file in the same directory as the .tex file and to avoid using .ps files, as they are not compatible with certain LaTeX output methods. Users suggest using .eps or .pdf formats instead. It is noted that different output methods, such as pdflatex and latex+dvips, have specific requirements for image formats. The user confirms that their images display correctly when outputting to DVI but not to PDF or PS, indicating a potential format compatibility issue.
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
is the path correct?
Put the graphics file the same directory as the .tex file, then give the filename without the path. (I don't think you can use a .ps file.)
 
I don't think you can use .ps files either. I know that you can use .eps files, though. Like rob said, make sure you put it in the in same folder as you .tex file.
 
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).
 

Similar threads

  • · Replies 4 ·
Replies
4
Views
3K
  • · Replies 2 ·
Replies
2
Views
4K
  • · Replies 3 ·
Replies
3
Views
2K
  • · Replies 1 ·
Replies
1
Views
7K
  • · Replies 9 ·
Replies
9
Views
6K
  • · Replies 2 ·
Replies
2
Views
6K
  • · Replies 8 ·
Replies
8
Views
12K
  • · Replies 5 ·
Replies
5
Views
3K
  • · Replies 2 ·
Replies
2
Views
3K
  • · Replies 4 ·
Replies
4
Views
3K