Graphics, Figures & TablesFigure on its own Page

Information and discussion about graphics, figures & tables in LaTeX documents.
Post Reply
kaioh
Posts: 7
Joined: Thu Aug 18, 2011 7:12 pm

Figure on its own Page

Post by kaioh »

Hi. I'm trying to put some figure, that is basically composed of six subfigure, alone in a page, in a two-column paper. More specifically, I'm using this:

Code: Select all

\begin{figure*}[!t]
\subfigure{\includegraphics[width=8.5cm]{A.pdf}\label{nlp1}}
\,
\subfigure{\includegraphics[width=8.5cm]{B.pdf}\label{nlp2}}\\
\subfigure{\includegraphics[width=8.5cm]{C.pdf}\label{nlp3}}
\,
\subfigure{\includegraphics[width=8.5cm]{D.pdf}\label{nlp4}}\\
\subfigure{\includegraphics[width=8.5cm]{E.pdf}\label{nlp5}}
\,
\subfigure{\includegraphics[width=8.5cm]{F.pdf}\label{nlp6}}
\caption{Abc.}
\label{fig1}
\end{figure*}
The question is that left over two or three lines in the background of the page, and it gets there some text. If I put for exemple \begin{figure*}[!c], it puts the figure at the end of everything, and of course, in this case the figure is centered, and that was what I want to do, but in some middle page. Does anyone know how to do that? Or is that even possible?

Thank you,
Kaioh
Last edited by localghost on Sun Aug 21, 2011 12:31 pm, edited 3 times 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.

And: Currently, Packt sells ebooks for $4.99 each if you buy 5 of their over 1000 ebooks. If you choose only a single one, $9.99. How about combining 3 LaTeX books with Python, gnuplot, mathplotlib, Matlab, ChatGPT or other AI books? Epub and PDF. Bundle (3 books, add more for higher discount): https://packt.link/MDH5p

sommerfee
Posts: 503
Joined: Mon Apr 09, 2007 4:20 pm

Figure on its own Page

Post by sommerfee »

kaioh wrote:\begin{figure*}[!c]
These is no float placement parameter "c", therefore the syntax of the statement above is wrong.
User avatar
Stefan Kottwitz
Site Admin
Posts: 10324
Joined: Mon Mar 10, 2008 9:44 pm

Figure on its own Page

Post by Stefan Kottwitz »

Hi Kaioh,

welcome to the board!

You could use the p option for figure*. It means putting figures on separate float pages and it works for figure* in a twocolumn documt as well. For example:

Code: Select all

\documentclass[twocolumn]{article}
\usepackage[demo]{graphicx}
\begin{document}
text
\begin{figure*}[!p]
\centering
\includegraphics{filename}
\caption{Demo figure}
\end{figure*}
text
\end{document}
Stefan
LaTeX.org admin
kaioh
Posts: 7
Joined: Thu Aug 18, 2011 7:12 pm

Re: Figure on its own Page

Post by kaioh »

Hi. Thank you for the welcome, and also for the help. It's just that. It works! Many thanks. Regards,
Kaioh
Post Reply