Actually I want to move my figures and tables to a separate LaTeX file. But when I compiled that new file I got a blank first page.
So I want to know how can I remove that blank first page. By the way, I'm using the bioinfo class.
Actually I want to move my figures and tables to a separate LaTeX file. But when I compiled that new file I got a blank first page.
So I want to know how can I remove that blank first page. By the way, I'm using the bioinfo class.
I offer that it is the bioinfo class, which appears to have other issues as well, that is to blame. A minimal LaTeX document using, for example, the article class with, for example, only figures in it ought not generate a blank first page:
\documentclass{article}
\usepackage{graphicx}
\begin{document}
\begin{figure}[h]
\begin{center}
\fbox{\includegraphics{hare}}
\caption{The Common Hare}
\label{fig:lab}
\end{center}
\end{figure}
\end{document}

atbegshican be used to discard a page based on a condition. – Werner Jan 06 '13 at 02:39atbegshipackage to your preamble:\usepackage{atbegshi}. Does this solve your problem? – Werner Jan 06 '13 at 03:27