I've read numerous posts about placing figures at the bottom of two-column articles, and worked out that using \usepackage{dblfloatfix} is the way to go. However, I can't work out how to do it so the figure shows at the first page of the article.
It brings the figure to the bottom of the page, but at the the bottom of the second page, not the first page. I've tried combining the !b with h, but nothing changed.
\documentclass[twoside,twocolumn,9pt]{article}
\usepackage{lipsum} % For fill text
\usepackage{graphicx} % For example picture
\usepackage{float}
\usepackage{dblfloatfix}
\begin{document}
\twocolumn[
\begin{@twocolumnfalse}
% Header first page
\noindent\LARGE{\textbf{Article title which doesn't split in two columns}}
\end{@twocolumnfalse} \vspace{1cm}
]
\section{Section A}
\lipsum[1-4]
\begin{figure*}[!b]
\centering
\includegraphics[width=0.4\linewidth]{example-image-a}
\end{figure*}
\section{Section B}
\lipsum[5-8]
\section{Section C}
\lipsum[9-14]
\end{document}
I would really appreciate some help, thanks in advance.
