I am in the process of trying to compile a LaTeX document. I have a separate .bib file and am using BiBTeX. I had put in 8 figures, generally using the
[htbp]
placement option, and these compiled fine. However when trying to compile and insert a 9th figure using the command:
Code: Select all
\begin{figure}[htbp]
\centering
\includegraphics[width=\textwidth]{figures/Fig9-retry.png}
\caption{A representation of an injector block.}
\label{fig:injectorblock}
\end{figure}
Code: Select all
Undefined control sequence \begin{figure}[htbp]
Undefined control sequence \begin{figure}[htbp]
Missing number, treated as zero \begin{figure}[htbp]
Too many unprocessed floats. \begin{figure}[htbp]
Undefined control sequence \begin{figure}[htbp]
Missing number, treated as zero \begin{figure}[htbp]
Undefined control sequence \end{figure}
Missing number, treated as zero \end{figure}
Undefined control sequence \end{figure}
Improper \prevdepth \end{figure}
You can't use `\prevdepth' in horizontal mode \end{figure}
Missing number, treated as zero \end{figure}
Illegal unit of measure (pt inserted) \end{figure}
Float(s) lost. \begin{thebibliography}{10}
`h' float specifier changed to `ht'.
Underfull \hbox (badness 10000) in paragraph
Underfull \hbox (badness 10000) in paragraph
Underfull \hbox (badness 10000) in paragraph
Does anyone have and suggestions on how I could get the file to compile? This would be much appreciated.
My pre-amble looks like this.
Code: Select all
\documentclass[a4paper,12pt]{report}
\usepackage{graphicx}
\usepackage[left=3.0cm, right=2.0cm, top=3.0cm, bottom=3.0cm]{geometry}
\usepackage{amsmath}
\usepackage{url}
\usepackage[notlof,nottoc,notlot]{tocbibind}
\usepackage{hyperref}
\usepackage{siunitx}
\usepackage{mathabx}
\usepackage{morefloats}
\usepackage{setspace}
\linespread{1.6}
\usepackage{cite}
James