0

i know its been a highly discussed topic already but i did not find a clever and universal solution for my problem yet. I am writing my master thesis right now and i would like to have a pagewide figure on my first page (not titlepage) on the bottom. Unfortunately it seems like that figure* does not support "first page" placed images. It jumps always on the second page. Does anyone knows a way around this problem?

my enviroment looks like this:

\documentclass[twocolumn, 11pt, a4paper]{article}
... packages...
\begin{document}
\begin{titlepage}
...
\end{titlepage}
\section{Introduction}
text
\begin{figure*}[!hb]
 \centering
  \includegraphics[width=14.5cm]{Figure.png}
\end{figure*}

Thank you very much for your help and advices.

Tim
  • 3
  • 1

1 Answers1

1

This works (with stfloats):

enter image description here

\documentclass[twocolumn]{article}

\usepackage{graphicx,lipsum,stfloats}

\begin{document}

\begin{titlepage} This is a title page. \end{titlepage}

\begin{figure}[!hb] \centering \includegraphics[width=14.5cm]{example-image} \end{figure}

\section{Introduction} \lipsum[1-10]

\end{document}

Werner
  • 603,163
  • Thank you Werner! you were right, i missed the articles you liked. the package "stfloats" made it possible! – Tim Dec 02 '21 at 08:48