1) If I use Kile to compile, it cannot find any postscript files (error is simply "filename not found"). This is a problem because all my figures are in .ps or .eps format. Without any images, everything else looks normal.
2) If I simple compile from the terminal with "latex filename.tex" then all the figures are included and for the most part all the formatting is correct. Unfortunately all of the text is screwed up. For example, the phrase, "Here is some sample text" becomes "Gdqd lr rnl d r`l old swds-" in the dvi file. When converted to a pdf everything is fine (though it can be annoying to have to do this for large documents).
Here is a sample file :
Code: Select all
\documentclass[a4paper]{book}
\usepackage{mathptmx}
\usepackage{graphicx}
\usepackage{wrapfig}
\usepackage{rotating}
\usepackage{subfigure}
\usepackage{amssymb}
\usepackage{longtable}
\setlength{\LTcapwidth}{17cm}
\usepackage[top=2.5cm, bottom=2.5cm, left=2.5cm, right=2.5cm]{geometry}
\usepackage{placeins}
\usepackage[footnotesize,bf]{caption}
\usepackage{amssymb}
\usepackage{float}
\setlength{\abovecaptionskip}{0pt}
\setlength{\belowcaptionskip}{0pt}
\begin{document}
\section{Overview}
Here is some sample text.\\
\begin{figure}[!h]
\begin{center}
\subfigure[Here is a sample caption]{\includegraphics[scale=0.28]{Filename}}
\caption{And another one.}
\label{figure}
\end{center}
\end{figure}
\end{document}
It's not really a major problem since compiling from the terminal works, but it would be nice to avoid it.
Thanks,
Rhys