I am trying to use a simple template for latex and include some images on it. The import I have in the beginning are:
\documentclass[dvips,11pt,twoside]{article}
\usepackage{natbib}
\usepackage[dvips]{graphicx}
while the code for showing the images:
\begin{figure}[thb]
\begin{center}
\includegraphics[width=2.84in]{sample.eps}
{\small Text below figure}
\end{center}
\caption{{\small Caption for Figure.}}
\end{figure}
while the sample.eps is in the same folder with .tex file I am able to compile the .tex file, however, I cannot see the image only the caption. What is the issue? The whole file can be found here.
Best Answer
If you leave out the dvips twice:
\documentclass[dvips,11pt,twoside]{article}
\usepackage[dvips]{graphicx})
it works.