Graphics, Figures & TablesPage location of figure overridden in "starred" version

Information and discussion about graphics, figures & tables in LaTeX documents.
Post Reply
SuzuBell
Posts: 14
Joined: Sat Dec 13, 2014 7:08 am

Page location of figure overridden in "starred" version

Post by SuzuBell »

I am trying to place a figure at the bottom center of the page, taking up about 80% of the text (across the entire two columns of a two-columned article).

I read (http://en.wikibooks.org/wiki/LaTeX/Floa ... d_Captions) that the asterisk sign in {figure*} allows the picture to span across the two columns.

However, when I tried the code below, I got an image that was centered and spanned about 80% of the text, but it was not located at the bottom of the page, despite using and [b!] (I tried both). Any ideas?:

Code: Select all

\usepackage{mathptmx}
\usepackage{graphicx}
\usepackage{sidecap}
\usepackage{times}
\usepackage{dblfloatfix}
\usepackage{fixltx2e}
\usepackage{natbib}
\usepackage{fullpage}
\usepackage{color}
\usepackage[dvipsnames,svgnames]{xcolor}
\usepackage[bookmarks,backref=true,linkcolor=black]{hyperref}
\usepackage{wrapfig,float}
\usepackage{subcaption}
\usepackage{amssymb}
\usepackage{amsmath}
\usepackage{url}
\usepackage{ulem}
\usepackage[section]{placeins}
\usepackage[colorinlistoftodos]{todonotes}

\begin{figure*}[b] % also tried with [b!]
\centering
\includegraphics[keepaspectratio=TRUE,width=0.8\linewidth]{myImage.png}
\caption{This is my caption}\label{fig:fig3}
\end{figure*}
Last edited by Stefan Kottwitz on Mon Dec 15, 2014 9:21 am, 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.

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

Stefan Kottwitz
Site Admin
Posts: 10335
Joined: Mon Mar 10, 2008 9:44 pm

Page location of figure overridden in "starred" version

Post by Stefan Kottwitz »

It works for me when I take your code and make it compilable. The figure is at the bottom.

Perhaps you make something different what is not shown here. Just always try posting a small but compilable example, which shows the problem. As your code is not complete, we speak about different things it seems.

My complete example in this topic works too.

Stefan
LaTeX.org admin
SuzuBell
Posts: 14
Joined: Sat Dec 13, 2014 7:08 am

Re: Page location of figure overridden in "starred" version

Post by SuzuBell »

Thank you! I realize it is because I did not have any other font on the page!
Post Reply