I have benefited much from the help given others in this forum - I'm hoping someone knows the answer to this problem as well. I am quite the newbie when it comes to LaTex, and am currently working on my first large project in it.
I am using MikTex 2.7 and TexMaker 1.9.2
When I try a minimal file, I use the following code
Code: Select all
\documentclass{uwothesis}
\usepackage{graphicx}
\begin{document}
\begin{figure}[p]
\centering
\includegraphics*[viewport=5cm 6cm 16cm 24cm]{pics/smallscale.pdf}
\caption[Small scale induction of pEBT7]
{Rosetta strain E. coli containing a pEBT7 expression vector were induced with 1mM IPTG and stained with Coomasie Brilliant Blue.}
\label{fig:smallscale}
\end{figure}
\end{document}
In my full thesis, I have a main file and a bunch of \include commands for the different chapters. In my preamble I have
Code: Select all
\usepackage{graphicx}
Code: Select all
\include{Results}
Code: Select all
\begin{figure}[p]
\centering
\includegraphics*[viewport=5cm 6cm 16cm 24cm]{pics/smallscale.pdf}
\caption[Small scale induction of pEBT7]
{Rosetta strain E. coli containing a pEBT7 expression vector were induced with 1mM IPTG and stained with Coomasie Brilliant Blue.}
\label{fig:smallscale}
\end{figure}
Unfortunately, when I run this (I'm running an identical pdflatex command on both the minimal file and the full thesis) I receive a bunch of errors that are targeted on the image, including at least 3 "Undefined control sequence" errors, a "Missing number, treated as zero" error, a "LaTeX error: Too many unprocessed floats" error, and some others.
Does anyone have any ideas? Am I missing something very silly? Do I need another \usepackage command in the files that I am including? Any help would be greatly appreciated.
Thanks!!
-Isaac