I am having problem in placing the figure at the bottom of page in latex. When I specify the \begin{figure*}[b]
, all the figures in my documents goes at the end of document. What I need is just place one specific figure at the bottom of current page or next page.
Please guide me how can I do this?
In order to place a float at the bottom of a two-column document, you can use the dblfloatfix
package. From the brief package description:
The package solves two problems: floats in a twocolumn document come out in the right order and allowed float positions are now
[tbp]
.
So, after \usepackage{dblfloatfix}
you can use
\begin{figure*}[btp]
% <your figure here>
\end{figure*}
Like will all floats (especially in a two-column
environment), the float may not end up where it is placed. As such, you may have to move around the figure*
declaration to achieve the desired location within your document.
stfloats
provides a similar functionality.
Reference: Put a table*
at the bottom of a page?
Werner's solutions didn't actually work for me.
So I just used this -
\begin{figure*}[b]
% <your figure here>
\end{figure*}
source: https://www.overleaf.com/learn/latex/Positioning_of_Figures
Using \begin{figure*}[!b]
worked for me.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With