- #1
JoAuSc
- 198
- 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.)
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?
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}