When I run this through TexWorks I get a pdf document but I didn't noticed I also get a bunch of
Code: Select all
Overfull \hbox (20.71967pt too wide) in alignment at lines 16--22
[] [] [] [] [] [] [] []
In my application that createst the tex document, I have many that run without errors. The only lines that are changing are the \chead statement which has the sample id and the line with data for the table. In my application I typically have 20-100 lines of data. It is probably an obvious mistake but for the life of me I can't find it.
Code: Select all
\documentclass{article}
\usepackage{fancyhdr}
\usepackage{longtable}
\usepackage[margin=2.5cm]{geometry}
\usepackage{lastpage}
\pdfpagewidth 8.5in
\pdfpageheight 11in
\pagestyle{fancy}
\headheight 35pt
\lhead{NewPage Research}
\chead{std 07-31-10}
\rhead{\today}
\cfoot{\thepage\ of \pageref{LastPage}}
\begin{document}
\begin{longtable}{l*{6}{c}r}
\caption{Heidelberg Pickout Report}
\label{table:PickoutAnalysis}\\
\hline \hline
Image Number& x (cm, for rotated image) & y (cm, for rotated image) & Intensity & White Spot Size (pixels)\\
\hline
\endhead
%This is the footer for all pages except the last page of the table...
\multicolumn{3}{l}{{Continued on Next Page\ldots}} \\
\endfoot
%This is the footer for the last page of the table...
\hline \hline
\endlastfoot
2 & 9.7 & 15.1 & 254 & 6 \\
\end{longtable}
\end{document}