If I just try to set the figure's size to 0.9\textwidth my figure will just end up on the right column, sized to be two-columns wide.
Has anyone done this before?
If I just try to set the figure's size to 0.9\textwidth my figure will just end up on the right column, sized to be two-columns wide.
Has anyone done this before?
From the TUG faq: use the starred versions figure* and table*. Unfortunately, they're somewhat limited in positioning.
Also, the same solution applies to equations. Just include them in a figure* environment. But I don't recommend doing this: it will look ugly and confusing. For an example, see this paper. (sorry, I couldn't find an example in arXiv)
[b]! @araujorns: I know of some journals that can make full-width equations across double cols, effectively splitting the page in four; seems like cuted and midfloat can do this. I wouldn't use it for figures, however.
– Will Robertson
Sep 17 '10 at 06:43
What about using the code below?
\documentclass[11pt,a4paper,twocolumn,english]{article}
\usepackage[T1]{fontenc}
\usepackage[utf8]{inputenc}
\usepackage{babel}
\usepackage[font=small,labelfont=bf,tableposition=top]{caption}
\usepackage{blindtext}
\usepackage{cuted}
\title{Two column document with figure underneath title}
\author{abhijit8}
\begin{document}
\maketitle
\begin{strip}
\centering\noindent
\rule{0.75\linewidth}{0.5\linewidth}
\captionof{figure}{\blindtext}
\end{strip}
\blindtext[2]
\begin{strip}
\centering\noindent
\rule{0.75\linewidth}{0.5\linewidth}
\captionof{figure}{\blindtext}
\end{strip}
\medskip
\noindent
\begin{minipage}{\linewidth}
\centering
\rule{0.75\linewidth}{0.5\linewidth}
\captionof{figure}{The quick brown fox jumps over the lazy dog}
\end{minipage}
\medskip
\blindtext[4]
\end{document}
It is from http://www.latex-community.org/forum/viewtopic.php?f=45&t=10661#p41194 and works like a charm for me.
\begin{figure*}, for example? – Joseph Wright Sep 16 '10 at 21:05figure*andtable*are two column figures and tables, respectively. – TH. Sep 16 '10 at 23:52\documentclass[twocolumn]{article}--but usingfigure*[width=\textwidth]sends it to the bottom of the document, not breaking the columns. – isomorphismes Jun 03 '14 at 09:17