3

My two-column document has an Appendix, and I would like to put a two-column Figure at the beginning of the Appendix.

I tried to use the following code:

\documentclass[twocolumn]{article}
\usepackage{blindtext}
\begin{document}

\section{Section}
\blindtext[4]

\clearpage

\appendix
\section{Appendix}
\begin{figure*}[t]
A very wide figure that spans across two columns.
A very wide figure that spans across two columns.
A very wide figure that spans across two columns.
\caption{Figure}
\end{figure*}

\blindtext[4]

\end{document}

The result looks like this (The Figure was placed on the last page):

enter image description here enter image description here enter image description here

This question asks something similar, but it does not ask about the Appendix (or right after clearing the page). Also, the suggested solution with \twocolumn[...] does not seem to work in this case.

Peter
  • 485

2 Answers2

5

You can use the stfloats package:

\documentclass[twocolumn]{article}
\usepackage{blindtext}
\usepackage{stfloats}
\begin{document}

\section{Section}
\blindtext[4]

\clearpage

\begin{figure*}[!t]
A very wide figure that spans across two columns.
A very wide figure that spans across two columns.
A very wide figure that spans across two columns.
\caption{Figure}
\end{figure*}


\appendix
\section{Appendix}

\blindtext[4] \blindtext[4] 

\end{document}

enter image description here

Ulrike Fischer
  • 327,261
1

Two column figures always come at the earliest at the page after their position in the source, but here for reasons that are not totally apparent at present the \clearpage before the figure is affecting the placement. (Or at least it's not clear how to flush all the floats at that point without using \clearpage in a way that affects the position of the following floats)

However as there are no pending floats here you can remove the clearpage:

enter image description here

\documentclass[twocolumn]{article}
\usepackage{blindtext}
\begin{document}

\section{Section}
\blindtext[4]

%\clearpage

\begin{figure*}[!t]
A very wide figure that spans across two columns.
A very wide figure that spans across two columns.
A very wide figure that spans across two columns.
\caption{Figure}
\end{figure*}

\newpage



\appendix
\section{Appendix}

\blindtext[4]

\end{document}
David Carlisle
  • 757,742