0

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.

user2987
  • 195

1 Answers1

1

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}

Single Page Output

commonhare
  • 2,630