The PDF image is one page from what was originally a 4 page document split into 4 separate images. I tried converting each to EPS and then back to PDF again and it seemed to work for two of the 4 images.
I have used the \fbox command to enclose the \includegraphics command to make sure that the size is being interpreted correctly and it is in all cases, and changing the image size doesn't change anything.
Generally, my compile order is lualatex->bibtex->lualatex->lualatex and I've tried the same thing with pdflatex. I have other PDF files that compile fine but this one has been problematic.
Below is a minimul working example. The preamble is pretty large but I figured I would include everything just to be safe. This is all part of a larger thesis template file for my university, so I can't really go deleting any of the packages either or it breaks the thesis template.
Code: Select all
\documentclass[12pt]{report}
\usepackage[letterpaper]{geometry}
\geometry{verbose,tmargin=1.25in,bmargin=1.25in,lmargin=1.4in,rmargin=1.15in}
\usepackage[doublespacing]{setspace}
\usepackage{tocloft}
\usepackage[rm, tiny,center, compact]{titlesec}
\usepackage{indentfirst}
\usepackage{etoolbox}
\usepackage{tocvsec2}
\usepackage[titletoc]{appendix}
\usepackage{appendix}
\usepackage{rotating}
\usepackage[T1]{fontenc}\usepackage{lmodern}
\usepackage[hidelinks,unicode]{hyperref}
\usepackage{amsmath}
\usepackage{graphicx,float,wrapfig}
\usepackage{natbib}
\begin{document}
\begin{figure}[tb]
\centering
\includegraphics[width=0.8\textwidth]{AT3-Iso.pdf}
\caption{Three-dimensional traversing mechanism affixed to 7$^{\circ}$ cone model.}
\label{fig:traverse}
\end{figure}
\end{document}
http://people.tamu.edu/~sacraig/debug/pdf-version.pdf
http://people.tamu.edu/~sacraig/debug/png-version.pdf
http://people.tamu.edu/~sacraig/debug/AT3-Iso.pdf
Thanks in advance if you can help me.