I have a huge table set in LaTeX, and for some reason I get a blank page first when I typeset it. I have found that the cause is in one of the header rows, but not why. The row in question has a series of multicolumn spans, see below.
The document looks like this:
Code:
\documentclass[a4paper,10pt]{article}
\usepackage{multirow}
\usepackage[latin1]{inputenc}
\usepackage[pdftex,landscape]{geometry}
\title{}
\author{}
\pagestyle{empty}
\oddsidemargin=-2.5cm
\begin{document}
\begin{tabular}{|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|c|}\hline
\multicolumn{25}{|c|}{<title>}\\ \hline
&\multicolumn{2}{|c|}{January}&[...]&\multicolumn{2}{|c|}{December}\\ \hline
[...]
[...]
\end{tabular}
\end{document}
(I shortened the code for space, it covers all the months, and each month covers 2 columns)
the problem is in the line that starts with "&\multicolumn{2}".