GeneralThe List of References is not on the last Page of a Document

LaTeX specific issues not fitting into one of the other forums of this category.
Post Reply
uwowizard
Posts: 4
Joined: Sat Jul 09, 2011 1:37 am

The List of References is not on the last Page of a Document

Post by uwowizard »

In a document, I have a table of the following structure that occupies the whole page and appears in the bottom of the document. I want the table to be before the references list, but somehow it appears after. I place this part of the document (the table is without titles and data).
Any help would be highly appreciated.

Code: Select all

\begin{table*}[ht]
\begin{minipage}[b]{0.5\linewidth}
\includegraphics[height=6cm]{figures/AverRMS}
\figcaption{...}
\label{fig:AverRMS}
\end{minipage}
\hspace{0.5cm}
\begin{minipage}[b]{0.5\linewidth}
\centering
\includegraphics[height=6cm]{figures/RMS}
\figcaption{..}
\label{fig:RMS}
\end{minipage}\\
\caption{..}
\begin{minipage}[b]{0.5\linewidth}\centering
\centering
\begin{tabular}{|l|rc|rc|}
\hline
  ...
\label{tab:307-A}
\end{minipage}
\hspace{0.5cm}
\begin{minipage}[b]{0.5\linewidth}
\centering
\begin{tabular}{|l|rc|rc|}
\hline
  ...
\end{tabular}
\label{tab:307-lambda}
\end{minipage} 
\label{tab:307}\\
\caption{...}
\begin{minipage}[b]{0.5\linewidth}\centering
\centering
\begin{tabular}{|l|rc|rc|}
\hline
  ...
\end{tabular}
\label{tab:237-A}
\end{minipage}
\hspace{0.5cm}
\begin{minipage}[b]{0.5\linewidth}
\centering

\begin{tabular}{|l|rc|rc|}
\hline
  ...
\end{tabular}
\label{tab:237-lambda}
\end{minipage}
\label{tab:237}
\end{table*}

\nocite{}
\bibliography{main}   %>>>> bibliography data in report.bib
\bibliographystyle{spiebib}   %>>>> makes bibtex use spiebib.bst
Last edited by uwowizard on Sun Jul 10, 2011 7:04 pm, edited 1 time in total.

Recommended reading 2024:

LaTeXguide.org • LaTeX-Cookbook.net • TikZ.org

NEW: TikZ book now 40% off at Amazon.com for a short time.

5gon12eder
Posts: 126
Joined: Sun Feb 13, 2011 8:36 pm

The List of References is not on the last Page of a Document

Post by 5gon12eder »

The table floats -- potentially after the list of references. Adding a \clearpage before the references will cause LaTeX to typeset any remaining floating objects and then start a new page. This should solve your problem.

Best
I'm using pdfTeX, Version 3.1415926-1.40.10 (TeX Live 2009/Debian).
uwowizard
Posts: 4
Joined: Sat Jul 09, 2011 1:37 am

Re: The List of References is not on the last Page of a Docu

Post by uwowizard »

Worked like a charm! Thanks a lot!
Post Reply